* replaces function based share views with class based * improves team-share autocomplete search * renames internal share url names
46 lines
2.2 KiB
HTML
46 lines
2.2 KiB
HTML
{% load i18n l10n fontawesome_5 %}
|
|
|
|
<div class="d-flex justify-content-end">
|
|
<a href="{{LANIS_LINK}}" class="mr-2" target="_blank">
|
|
<button class="btn btn-default" title="{% trans 'Open in LANIS' %}">
|
|
LANIS
|
|
</button>
|
|
</a>
|
|
<a href="{% url 'compensation:acc:report' obj.id %}" target="_blank" class="mr-2">
|
|
<button class="btn btn-default" title="{% trans 'Public report' %}">
|
|
{% fa5_icon 'file-alt' %}
|
|
</button>
|
|
</a>
|
|
{% if has_access %}
|
|
<button class="btn btn-default btn-modal mr-2" title="{% trans 'Resubmission' %}" data-form-url="{% url 'compensation:acc:resubmission-create' obj.id %}">
|
|
{% fa5_icon 'bell' %}
|
|
</button>
|
|
<button class="btn btn-default btn-modal mr-2" title="{% trans 'Share' %}" data-form-url="{% url 'compensation:acc:share-form' obj.id %}">
|
|
{% fa5_icon 'share-alt' %}
|
|
</button>
|
|
{% if is_ets_member %}
|
|
{% if obj.recorded %}
|
|
<button class="btn btn-default btn-modal mr-2" title="{% trans 'Unrecord' %}" data-form-url="{% url 'compensation:acc:record' obj.id %}">
|
|
{% fa5_icon 'bookmark' 'far' %}
|
|
</button>
|
|
{% else %}
|
|
<button class="btn btn-default btn-modal mr-2" title="{% trans 'Record' %}" data-form-url="{% url 'compensation:acc:record' obj.id %}">
|
|
{% fa5_icon 'bookmark' %}
|
|
</button>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if is_default_member %}
|
|
<a href="{% url 'compensation:acc:edit' obj.id %}" class="mr-2">
|
|
<button class="btn btn-default" title="{% trans 'Edit' %}">
|
|
{% fa5_icon 'edit' %}
|
|
</button>
|
|
</a>
|
|
<button class="btn btn-default btn-modal mr-2" data-form-url="{% url 'compensation:acc:log' obj.id %}" title="{% trans 'Show log' %}">
|
|
{% fa5_icon 'history' %}
|
|
</button>
|
|
<button class="btn btn-default btn-modal" data-form-url="{% url 'compensation:acc:remove' obj.id %}" title="{% trans 'Delete' %}">
|
|
{% fa5_icon 'trash' %}
|
|
</button>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div> |