first commit
This commit is contained in:
22
helix/templates/site_characterization.html.jinja
Normal file
22
helix/templates/site_characterization.html.jinja
Normal file
@@ -0,0 +1,22 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user