first commit

This commit is contained in:
Senad Uka
2017-11-07 09:23:57 +01:00
commit 0eee92660a
356 changed files with 747259 additions and 0 deletions

View 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 %}