64 lines
2.0 KiB
HTML
Executable File
64 lines
2.0 KiB
HTML
Executable File
{% extends "base.html" %}
|
|
{% block title %} :: {% with "true" as striptags %}{% include "calculate_form_title.html" %}{% endwith %}{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ MEDIA_URL }}packages/nathansmith-960-Grid-System-30906f2/code/css/960.css" type="text/css" media="screen" />
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="container_12">
|
|
{% if form %}
|
|
<div class="grid_{{ form.grid|default:11 }}">
|
|
{% include "generic_form_subtemplate.html" %}
|
|
|
|
</div>
|
|
{% if form.grid_clear or not form.grid %}
|
|
<div class="clear"></div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% for form in form_list %}
|
|
{% with form.submit_method as submit_method %}
|
|
{% with form.striptags as striptags %}
|
|
{% with form.title as title %}
|
|
{% with form.object as object %}
|
|
{% with form.object_name as object_name %}
|
|
{% with form.form_action as form_action %}
|
|
<div class="grid_{{ form.grid|default:11 }}">
|
|
{% with form.form as form %}
|
|
{% include "generic_form_subtemplate.html" %}
|
|
{% endwith %}
|
|
|
|
</div>
|
|
{% if form.grid_clear or not form.grid %}
|
|
<div class="clear"></div>
|
|
{% endif %}
|
|
|
|
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% 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 %}
|
|
{% with subtemplate.hide_header as hide_header %}
|
|
{% include subtemplate.name %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|