13 lines
397 B
HTML
13 lines
397 B
HTML
{% load inventree_extras %}
|
|
{% load i18n %}
|
|
|
|
{% inventree_customize 'hide_admin_link' as hidden %}
|
|
|
|
{% if url and not hidden and user.is_staff %}
|
|
<a href='{{ url }}'>
|
|
<button id='admin-button' href='{{ url }}' title='{% trans "View in administration panel" %}' type='button' class='btn btn-primary admin-button'>
|
|
<span class='fas fa-user-shield'></span>
|
|
</button>
|
|
</a>
|
|
{% endif %}
|