Files
old-krovovi-kalkulator/helix/templates/download.html.jinja

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2017-11-07 09:23:57 +01:00
{% extends "layout.html.jinja" %}
{% set title = "Helix Calculator" %}
{% block contents %}
2017-12-19 15:18:35 +01:00
{% for warning in context['warning_messages'] %}
<div class="summary_warning">{{ warning.value }}</div>
{% endfor %}
2017-11-07 09:23:57 +01:00
<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>
2017-12-19 15:18:35 +01:00
{% if 'SFID' in session %}
<div class="download">
<a href="/export-sfdc">
<button>Export documents to Salesforce</button>
</a>
</div>
{% endif %}
2017-11-07 09:23:57 +01:00
{% else %}
Please complete previous steps first!
{% endif %}
{% include "navigation_buttons.html.jinja" %}
{% endblock %}