* adds EditEcoAccountForm * adds placeholders for some form fields * changes comment card in detail view into rlp-grayish * adds eco account detail view comment box * removes unnecessary loading of dal scripts in view.html * refactors generated identifier for data objects (10 digits to 6 uppercase letter-digit combination) * improves generate_random_string() method by adding more options for generation of strings * adds/updates translations
23 lines
650 B
HTML
23 lines
650 B
HTML
{% load i18n fontawesome_5 %}
|
|
|
|
{% if intervention.comment %}
|
|
<div class="w-100">
|
|
<div class="card mt-3">
|
|
<div class="card-header rlp-gd">
|
|
<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>
|
|
</div>
|
|
{% endif %} |