Move pumping to activities

This commit is contained in:
bugbountyguy 2022-03-04 09:53:38 -06:00 committed by Christopher Charbonneau Wells
parent 6df9b44407
commit f94b533568
1 changed files with 15 additions and 14 deletions

View File

@ -93,6 +93,7 @@
{% trans "Pumping" %}
</a>
{% endif %}
</div>
</div>
</div>
@ -241,20 +242,6 @@
</a>
{% endif %}
{% if perms.core.view_pumping %}
<a class="dropdown-item{% if request.path == '/pumping/' %} active{% endif %}"
href="{% url 'core:pumping-list' %}">
<i class="icon-pumping" aria-hidden="true"></i>
{% trans "Pumping" %}
</a>
{% endif %}
{% if perms.core.add_pumping %}
<a class="dropdown-item pl-5{% if request.path == '/pumping/add/' %} active{% endif %}"
href="{% url 'core:pumping-add' %}"><i class="icon-add" aria-hidden="true"></i>
{% trans "Pumping entry" %}
</a>
{% endif %}
</div>
</li>
@ -321,6 +308,20 @@
</a>
{% endif %}
{% if perms.core.view_pumping %}
<a class="dropdown-item{% if request.path == '/pumping/' %} active{% endif %}"
href="{% url 'core:pumping-list' %}">
<i class="icon-pumping" aria-hidden="true"></i>
{% trans "Pumping" %}
</a>
{% endif %}
{% if perms.core.add_pumping %}
<a class="dropdown-item pl-5{% if request.path == '/pumping/add/' %} active{% endif %}"
href="{% url 'core:pumping-add' %}"><i class="icon-add" aria-hidden="true"></i>
{% trans "Pumping entry" %}
</a>
{% endif %}
</div>
</li>