{% load aircox i18n %}
{% block user-actions-container %}
{% if user.is_authenticated %}
{{ object.get_status_display|capfirst }}
{% if object.pub_date %}
({{ object.pub_date|date:"d/m/Y H:i" }})
{% endif %}
{% endif %}
{% if user.is_authenticated %}
{% with request.resolver_match.view_name as view_name %}
{% if request.path != object.get_absolute_url %}
{% translate 'View' %}
{% elif can_edit %}
{% translate 'Edit' %}
{% endif %}
{% endwith %}
{% endif %}
{% endblock %}