summaryrefslogtreecommitdiff
path: root/procurement/templates
diff options
context:
space:
mode:
Diffstat (limited to 'procurement/templates')
-rw-r--r--procurement/templates/procurement/includes/supplier_list.html12
-rw-r--r--procurement/templates/procurement/source_components.html6
2 files changed, 14 insertions, 4 deletions
diff --git a/procurement/templates/procurement/includes/supplier_list.html b/procurement/templates/procurement/includes/supplier_list.html
index 028e62c..ffd7435 100644
--- a/procurement/templates/procurement/includes/supplier_list.html
+++ b/procurement/templates/procurement/includes/supplier_list.html
@@ -17,11 +17,17 @@
</thead>
<tbody>
{% for supplier in supplier_results %}
+ {% for representative in supplier.representatives.all %}
<tr>
+ {% if forloop.first %}
<td>{{ supplier.name }}</td>
- <td>{{ supplier.representative_name }}</td>
- <td>{{ supplier.representative_email }}</td>
+ {% else %}
+ <td></td>
+ {% endif %}
+ <td>{{ representative.name }}</td>
+ <td>{{ representative.email }}</td>
</tr>
+ {% endfor %}
{% empty %}
<tr>
<td colspan="3">No authorized suppliers found.</td>
@@ -34,4 +40,4 @@
</div>
<!-- /.panel-body -->
</div>
-<!-- / Supplier Results Panel --> \ No newline at end of file
+<!-- / Supplier Results Panel -->
diff --git a/procurement/templates/procurement/source_components.html b/procurement/templates/procurement/source_components.html
index 3eebf84..db412a2 100644
--- a/procurement/templates/procurement/source_components.html
+++ b/procurement/templates/procurement/source_components.html
@@ -42,6 +42,10 @@
<span class="record-updated text-muted small"><em>{{ suppliers_last_updated }}</em></span>
</span>
<span class="list-group-item">
+ <span class="record-list"><i class="fa fa-users fa-fw"></i> {{ representative_count }} Representatives</span>
+ <span class="record-updated text-muted small"><em>{{ representatives_last_updated }}</em></span>
+ </span>
+ <span class="list-group-item">
<span class="record-list"><i class="fa fa-cog fa-fw"></i> {{ component_count }} Components</span>
<span class="record-updated text-muted small"><em>{{ components_last_updated }}</em></span>
</span>
@@ -58,4 +62,4 @@
{% block additional_js %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/js/select2.min.js"></script>
<script src="{% static 'procurement/js/component_search.js' %}"></script>
-{% endblock %} \ No newline at end of file
+{% endblock %}