* adds Ema model (basically Compensation inherited) * adds index view for EMAs * fixes drop-down link bug for menu 'More' in navbar * refactors some more forms to use process_request() * adds modified attribute to BaseResource for easy last_modified check * adds setting of modified attribute in all places where UserAction.EDITED is added to log * adds EMA_ACCOUNT_IDENTIFIER_LENGTH and EMA_ACCOUNT_IDENTIFIER_TEMPLATE to ema/settings.py * adds EmaAdmin to ema/admin.py * fixes wrong title in intervention detail view html for revocations * adds support for subtitle variable to BaseTable and generic_index.html * drops next_version attribute from models * adds/updates translations * adds default ordering for UserActionLogEntry * removes extra ordering in log modal rendering
155 lines
8.1 KiB
HTML
155 lines
8.1 KiB
HTML
{% extends 'base.html' %}
|
|
{% load i18n l10n static fontawesome_5 humanize %}
|
|
|
|
{% block head %}
|
|
{% comment %}
|
|
dal documentation (django-autocomplete-light) states using form.media for adding needed scripts.
|
|
This does not work properly with modal forms, as the scripts are not loaded properly inside the modal.
|
|
Therefore the script linkages from form.media have been extracted and put inside dal/scripts.html to ensure
|
|
these scripts are loaded when needed.
|
|
{% endcomment %}
|
|
{% include 'dal/scripts.html' %}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<div id="detail-header" class="row">
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
<h3>{% trans 'Intervention' %} {{intervention.identifier}}</h3>
|
|
</div>
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
{% include 'intervention/detail/includes/controls.html' %}
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div id="data" class="row">
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
<div class="table-container">
|
|
<table class="table table-hover">
|
|
<tr {% if not intervention.title %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th class="w-25" scope="row">{% trans 'Title' %}</th>
|
|
<td class="align-middle">{{intervention.title|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr {% if not intervention.legal.process_type %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Process type' %}</th>
|
|
<td class="align-middle">{{intervention.legal.process_type|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr {% if not intervention.legal.law %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Law' %}</th>
|
|
<td class="align-middle">{{intervention.legal.law|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans 'Registration office' %}</th>
|
|
<td class="align-middle">{{intervention.responsible.registration_office|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr {% if not intervention.responsible.registration_file_number %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Registration office file number' %}</th>
|
|
<td class="align-middle">{{intervention.responsible.registration_file_number|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans 'Conservation office' %}</th>
|
|
<td class="align-middle">{{intervention.responsible.conservation_office|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr {% if not intervention.responsible.conservation_file_number %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Conversation office file number' %}</th>
|
|
<td class="align-middle">{{intervention.responsible.conservation_file_number|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr {% if not intervention.responsible.handler %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Intervention handler' %}</th>
|
|
<td class="align-middle">{{intervention.responsible.handler|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans 'Checked' %}</th>
|
|
<td class="align-middle">
|
|
{% if intervention.checked is None %}
|
|
<span>
|
|
{% fa5_icon 'star' 'far' %}
|
|
</span>
|
|
{% else %}
|
|
<span class="check-star" title="{% trans 'Checked on '%} {{intervention.checked.timestamp}} {% trans 'by' %} {{intervention.checked.user}}">
|
|
{% fa5_icon 'star' %}
|
|
</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans 'Recorded' %}</th>
|
|
<td class="align-middle">
|
|
{% if intervention.recorded is None %}
|
|
<span title="{% trans 'Not recorded yet' %}">
|
|
{% fa5_icon 'bookmark' 'far' %}
|
|
</span>
|
|
{% else %}
|
|
<span class="registered-bookmark" title="{% trans 'Recorded on '%} {{intervention.recorded.timestamp}} {% trans 'by' %} {{intervention.recorded.user}}">
|
|
{% fa5_icon 'bookmark' %}
|
|
</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr {% if not intervention.legal.registration_date %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Registration date' %}</th>
|
|
<td class="align-middle">{{intervention.legal.registration_date|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr {% if not intervention.legal.binding_date %}class="alert alert-danger" title="{% trans 'Missing' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Binding on' %}</th>
|
|
<td class="align-middle">{{intervention.legal.binding_date|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr {% if intervention.legal.revocation %}class="alert alert-danger" title="{% trans 'Exists' %}" {% endif %}>
|
|
<th scope="row">{% trans 'Revocation' %}</th>
|
|
<td class="align-middle">{{intervention.legal.revocation.date|naturalday|default_if_none:""}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans 'Last modified' %}</th>
|
|
<td class="align-middle">
|
|
{{intervention.created.timestamp|default_if_none:""|naturalday}}
|
|
<br>
|
|
{{intervention.created.user.username}}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans 'Shared with' %}</th>
|
|
<td class="align-middle">
|
|
{% for user in intervention.users.all %}
|
|
{% include 'user/includes/contact_modal_button.html' %}
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
{% include 'map/geom_form.html' %}
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
{% include 'intervention/detail/includes/compensations.html' %}
|
|
</div>
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
{% include 'intervention/detail/includes/payments.html' %}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
{% include 'intervention/detail/includes/withdraws.html' %}
|
|
</div>
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
{% include 'intervention/detail/includes/revocation.html' %}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
{% include 'intervention/detail/includes/documents.html' %}
|
|
</div>
|
|
<div class="col-sm-12 col-md-12 col-lg-6">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% with 'btn-modal' as btn_class %}
|
|
{% include 'modal/modal_form_script.html' %}
|
|
{% endwith %}
|
|
|
|
{% endblock %} |