52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
{% extends "base.html" %}
|
|
{% load subtemplates_tags %}
|
|
|
|
{% block title %} :: {% with "true" as striptags %}{% include "calculate_form_title.html" %}{% endwith %}{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% for subtemplate in sidebar_subtemplates_list %}
|
|
{% if subtemplate.form %}
|
|
{% render_subtemplate subtemplate.name subtemplate.context as rendered_subtemplate %}
|
|
<div class="generic_subform">
|
|
{{ rendered_subtemplate }}
|
|
</div>
|
|
{% else %}
|
|
{% render_subtemplate subtemplate.name subtemplate.context as rendered_subtemplate %}
|
|
{{ rendered_subtemplate }}
|
|
{% endif %}
|
|
{% if subtemplate.grid_clear or not subtemplate.grid %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="">
|
|
{% if form %}
|
|
<div class="">
|
|
{% include "generic_form_subtemplate.html" %}
|
|
</div>
|
|
{% if form.grid_clear or not form.grid %}
|
|
<div class=""></div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% for subtemplate in subtemplates_list %}
|
|
<div class="">
|
|
{% if subtemplate.form %}
|
|
{% render_subtemplate subtemplate.name subtemplate.context as rendered_subtemplate %}
|
|
<div class="generic_subform">
|
|
{{ rendered_subtemplate }}
|
|
</div>
|
|
{% else %}
|
|
{% render_subtemplate subtemplate.name subtemplate.context as rendered_subtemplate %}
|
|
{{ rendered_subtemplate }}
|
|
{% endif %}
|
|
</div>
|
|
{% if subtemplate.grid_clear or not subtemplate.grid %}
|
|
<div class=""></div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
{% endblock %}
|