{% extends 'base.html' %} {% load i18n l10n static fontawesome_5 humanize %} {% block head %} {% endblock %} {% block body %}
{% trans 'Title' %} | {{obj.title}} |
---|---|
{% trans 'compensates intervention' %} | {{obj.intervention.identifier}} |
{% trans 'Checked' %} | {% if obj.intervention.checked is None %} {% fa5_icon 'star' 'far' %} {% else %} {% fa5_icon 'star' %} {% endif %} |
{% trans 'Recorded' %} | {% if obj.intervention.recorded is None %} {% fa5_icon 'bookmark' 'far' %} {% else %} {% fa5_icon 'bookmark' %} {% endif %} |
{% trans 'Last modified' %} |
{{obj.modified.timestamp|default_if_none:""|naturalday}}
{{obj.modified.user.username}} |
{% trans 'Shared with' %} | {% for user in obj.intervention.users.all %} {% include 'user/includes/contact_modal_button.html' %} {% endfor %} |