22 lines
814 B
Django/Jinja
22 lines
814 B
Django/Jinja
{% extends "layout.html.jinja" %}
|
|
{% set title = "Helix Calculator" %}
|
|
{% block contents %}
|
|
<form action="" method="post" enctype="multipart/form-data">
|
|
{{ form.csrf_token }}
|
|
<div class="form_section">
|
|
<h3> Project Information </h3>
|
|
{% for field in form.group('project_info') %}
|
|
{% include 'form_row.html.jinja' %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="form_section">
|
|
<h3> Site Characterization </h3>
|
|
{% for field in form.group('site_info') %}
|
|
{% include 'form_row.html.jinja' %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="submit navigation_buttons">
|
|
<input type="submit" class="button" name="submit_button" value="Next">
|
|
</div>
|
|
</form>
|
|
{% endblock %} |