7_New_forms #28

Merged
mpeltriaux merged 22 commits from 7_New_forms into master 2021-10-13 08:54:22 +02:00
2 changed files with 27 additions and 1 deletions
Showing only changes of commit 61b75be1a1 - Show all commits

View File

@ -0,0 +1,21 @@
{% load i18n fontawesome_5 %}
{% if intervention.comment %}
<div class="card mt-3">
<div class="card-header rlp-r">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<h5 class="card-title">
{% fa5_icon 'info-circle' %}
{% trans 'Comment' %}
</h5>
</div>
</div>
</div>
<div class="card-body">
<div class="card-text font-italic">
{{intervention.comment}}
</div>
</div>
</div>
{% endif %}

View File

@ -123,8 +123,13 @@
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-6">
<div class="row">
{% include 'map/geom_form.html' %}
</div>
<div class="row">
{% include 'intervention/detail/includes/comment.html' %}
</div>
</div>
</div>
<hr>