This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% block content %} | |
<table class="table table-striped table-bordered table-condensed table-hover"> | |
<thead> | |
<tr> | |
<th class="">Id</th> | |
<th class="">Name</th> | |
<th class="">Site</th> | |
</thead> | |
<tbody> | |
{% for system in systems %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@csrf_protect | |
def systems_search(request): | |
name = request.POST['name'] | |
comments = request.POST['comments'] | |
systems = System.objects.filter(name__icontains=name, comments__icontains=comments)[:10] | |
# systems = System.objects.all()[:5] | |
template = 'no_search_results.html' | |
context = None | |
if systems.count() > 0: | |
template = 'systems/_search.html' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(document).ready(function() { | |
$('input#system_search_form_btn').on('click', function(e) { | |
// submits related form | |
}); | |
$('form#system_search_form').on('submit', function(e) { | |
e.preventDefault(); | |
$.ajax({ | |
type: $(this).attr('method'), | |
url: $(this).attr('action'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="systems_search_table"> | |
<div class="alert alert-info text-center" role="alert"> | |
Click search to find Systems. | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id='system_search_form' action="{% url 'metadata:_systems_search' %}" method="post" accept-charset="utf-8"> | |
{% csrf_token %} | |
<div class="row"> | |
<div class="col-12"> | |
<h3>SYSTEMS SEARCH</h3> | |
</div> | |
<div class="col"> | |
<label>Name</label><br /> | |
<input name="name" type="input" class="form-control" /> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class System(models.Model): | |
system_id = models.IntegerField(primary_key=True) | |
name = models.CharField(max_length=200) | |
comments = models.TextField() | |
# ASSOCIATIONS | |
site = models.ForeignKey(Site, | |
on_delete=models.SET_NULL, | |
null=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Turbine < ActiveRecord::Base | |
has_one :turbine_type, foreign_key: "id" | |
end | |
class TurbineType < ActiveRecord::Base | |
end | |
show.html.erb |