Skip to content

Commit

Permalink
fix: bugs on fetc_form_base.html
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoStorm96 committed Sep 18, 2024
1 parent 887ed5f commit 97c953a
Showing 1 changed file with 24 additions and 25 deletions.
49 changes: 24 additions & 25 deletions main/templates/base/fetc_form_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,37 +33,36 @@

{% block auto-form-render %}{{ form }}{% endblock %}

{% block form-buttons %}
{% block post-form-pre-buttons %}{% endblock %}
{% block post-form-pre-buttons %}{% endblock %}

<div class="uu-form-text-row">
<div class="uu-form-text">
<div class="mt-4 mb-3 w-100 d-flex">
{% block form-buttons %}
{% include "base/form_buttons.html" %}
{% endblock %}
<div class="uu-form-text-row">
<div class="uu-form-text">
<div class="mt-4 mb-3 w-100 d-flex">
{% block form-buttons %}
{% include "base/form_buttons.html" %}
{% endblock %}

</div>
</div>
</div>
{# A block one can use to add stuff after the form, but still next to the stepper #}
{% block post-form %}
<div class="uu-form-text-row">
<div class="uu-form-text">
{% block post-form-text %}{% endblock %}

</div>
<aside class="uu-form-text-aside">
{% block post-form-aside %}{% endblock %}
</div>
{# A block one can use to add stuff after the form, but still next to the stepper #}
{% block post-form %}
<div class="uu-form-text-row">
<div class="uu-form-text">
{% block post-form-text %}{% endblock %}

</aside>
</div>
{% endblock %}
<aside class="uu-form-text-aside">
{% block post-form-aside %}{% endblock %}

</form>
</div>
{# A block one can use to insert content after the stepper/form container #}
{% block post-form-container-content %}{% endblock %}
</aside>
</div>
{% endblock %}

</form>
</div>
{% endblock %}
{# A block one can use to insert content after the stepper/form container #}
{% block post-form-container-content %}{% endblock %}

</div>
{% endblock %}

0 comments on commit 97c953a

Please sign in to comment.