first commit
This commit is contained in:
27
helix/templates/download.html.jinja
Normal file
27
helix/templates/download.html.jinja
Normal file
@@ -0,0 +1,27 @@
|
||||
{% extends "layout.html.jinja" %}
|
||||
{% set title = "Helix Calculator" %}
|
||||
{% block contents %}
|
||||
<div class="form_section">
|
||||
<h3>Download</h3>
|
||||
</div>
|
||||
{% if context['csv_available'] %}
|
||||
<div class="download">
|
||||
<a href="/result">
|
||||
<button>Download AutoCAD import file (.txt)</button>
|
||||
</a>
|
||||
</div>
|
||||
<div class="download">
|
||||
<a href="/documentation">
|
||||
<button>Download Project Report (.pdf)</button>
|
||||
</a>
|
||||
</div>
|
||||
<div class="download">
|
||||
<a href="/bom">
|
||||
<button>Download BOM (.txt)</button>
|
||||
</a>
|
||||
</div>
|
||||
{% else %}
|
||||
Please complete previous steps first!
|
||||
{% endif %}
|
||||
{% include "navigation_buttons.html.jinja" %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user