diff options
| -rw-r--r-- | ishtar_common/templates/ishtar/wizard/confirm_wizard.html | 22 | 
1 files changed, 16 insertions, 6 deletions
| diff --git a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html index 034d6e21a..5edc9f9bf 100644 --- a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html +++ b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html @@ -11,12 +11,22 @@    {% block "warning_informations" %}{% endblock %}    <p>{%if confirm_msg %}{{confirm_msg|safe}}{%else%}{% trans "You have entered the following informations:" %}{%endif%}</p>    {% for form_label, form_data in datas %} -  <table class='confirm'> -    <caption>{{form_label}}</caption> -    {% for data in form_data %} -    <tr{%if data.2%} class='{{data.2}}'{%endif%}><th>{{data.0}}</th><td>{{data.1}}</td></tr> -    {% endfor %} -  </table> + +  <div class="card"> +    <div class="card-header"> +      {{form_label}} +    </div> +    <div class="card-body form-row"> +      <table class='table'> +        {% for data in form_data %} +        <tr{%if data.2%} class='{{data.2}}'{%endif%}><th>{{data.0}}</th><td>{{data.1}}</td></tr> +        {% endfor %} +      </table> + +    </div> +  </div> + +    {% endfor %}  {{wizard.management_form}}    {%if not wizard.form.is_hidden %} | 
