Skip to content

Instantly share code, notes, and snippets.

View techbrownbags's full-sized avatar

Michael Bahl techbrownbags

View GitHub Profile
{% 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 %}
@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'
<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'),
<div id="systems_search_table">
<div class="alert alert-info text-center" role="alert">
Click search to find Systems.
</div>
</div>
<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>
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)
class Turbine < ActiveRecord::Base
has_one :turbine_type, foreign_key: "id"
end
class TurbineType < ActiveRecord::Base
end
show.html.erb