2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00

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