mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-02-21 22:09:42 +00:00
One of these days I'll remember to test BEFORE pushing...
This commit is contained in:
@@ -473,7 +473,7 @@ class Event(models.Model, RevisionMixin):
|
||||
return reverse_lazy('event_detail', kwargs={'pk': self.pk})
|
||||
|
||||
def __str__(self):
|
||||
return self.display_id + ": " + self.name
|
||||
return "{}: {}".format(self.display_id, self.name)
|
||||
|
||||
def clean(self):
|
||||
errdict = {}
|
||||
|
||||
@@ -95,6 +95,7 @@ class OrganisationList(GenericListView):
|
||||
context['union_account'] = True
|
||||
return context
|
||||
|
||||
|
||||
class OrganisationDetail(GenericDetailView):
|
||||
model = models.Organisation
|
||||
|
||||
@@ -107,6 +108,7 @@ class OrganisationDetail(GenericDetailView):
|
||||
context['associated2'] = 'partials/associated_events.html'
|
||||
return context
|
||||
|
||||
|
||||
class OrganisationCreate(generic.CreateView):
|
||||
template_name = 'organisation_form.html'
|
||||
model = models.Organisation
|
||||
|
||||
@@ -124,7 +124,7 @@ class SupplierList(BasePage):
|
||||
URL_TEMPLATE = reverse('supplier_list')
|
||||
|
||||
_supplier_item_locator = (By.ID, 'row_item')
|
||||
_search_text_locator = (By.XPATH, '//*[@id="main"]/div[2]/form/div/input')
|
||||
_search_text_locator = (By.ID, 'id_search_text')
|
||||
_go_button_locator = (By.ID, 'id_search')
|
||||
|
||||
class SupplierListRow(Region):
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
{% csrf_token %}
|
||||
<div class="input-group">
|
||||
<input type="search" name="q" placeholder="Search" value="{{ request.GET.q }}"
|
||||
class="form-control"/>
|
||||
class="form-control" id="id_search_text"/>
|
||||
<span class="input-group-append">{% button 'search' id="id_search" %}</span>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@@ -145,6 +145,6 @@
|
||||
</div>
|
||||
<h4>Events</h4>
|
||||
{% with object.latest_events as events %}
|
||||
{% include 'event_table.html' %}
|
||||
{% include 'partials/event_table.html' %}
|
||||
{% endwith %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user