Added TODO entry

This commit is contained in:
Oliver 2018-04-22 23:16:12 +10:00
parent ac3de4ce3d
commit 97f05f85de

View File

@ -3,6 +3,11 @@
{% block content %}
<h3>Companies</h3>
<hr>
<b>TODO - Filtering! (customer / supplier / search)</b>
<hr>
<ul class='list-group'>
{% for company in companies %}
<li class='list-group-item'>
@ -12,9 +17,6 @@
{% if company.website %}
<a href="{{ company.website }}">- {{ company.website }}</a>
{% endif %}
<span class="badge">
{{ company.parts.all|length }}
</span>
</li>
{% endfor %}
</ul>