26 lines
802 B
HTML
Executable File
26 lines
802 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% block title %} :: {% with "true" as striptags %}{% include "calculate_form_title.html" %}{% endwith %}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "generic_form_subtemplate.html" %}
|
|
|
|
{% for subtemplate in subtemplates_dict %}
|
|
{% with subtemplate.title as title %}
|
|
{% with subtemplate.object_list as object_list %}
|
|
{% with subtemplate.extra_columns as extra_columns %}
|
|
{% with subtemplate.hide_object as hide_object %}
|
|
{% with subtemplate.main_object as main_object %}
|
|
{% with subtemplate.hide_link as hide_link %}
|
|
<div class="content">
|
|
{% include subtemplate.name %}
|
|
</div>
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|