2022-01-05 15:10:18 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
2022-01-23 17:33:50 +01:00
|
|
|
<div id="buttons">
|
|
|
|
<div class="overview">
|
|
|
|
<a href="/">
|
2022-03-23 21:30:59 +01:00
|
|
|
<input type="button" name="button" value="Main page"></input>
|
2022-01-23 17:33:50 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="logout">
|
|
|
|
<a href="/logout">
|
|
|
|
<input type="button" name="button" value="Logout"></input>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-09 14:40:40 +01:00
|
|
|
<div id="mainworkflow">
|
2022-03-04 16:41:14 +01:00
|
|
|
{% if selectorvisible %}
|
|
|
|
{% block selector %}
|
|
|
|
{% include "distribusiworkflow/selector.html" %}
|
|
|
|
{% endblock selector%}
|
|
|
|
{% else %}
|
|
|
|
{% block upload %}
|
|
|
|
{% include "distribusiworkflow/upload.html" %}
|
|
|
|
{% endblock upload%}
|
|
|
|
<img src="{{ url_for('static', filename='svg/arrow_1.svg')}}" />
|
|
|
|
{% block theme %}
|
|
|
|
{% include "distribusiworkflow/theme.html" %}
|
|
|
|
{% endblock theme%}
|
|
|
|
<img src="{{ url_for('static', filename='svg/arrow_2.svg')}}" />
|
|
|
|
{% block editcss %}
|
|
|
|
{% include "distribusiworkflow/editcss.html" %}
|
|
|
|
{% endblock editcss%}
|
|
|
|
<img src="{{ url_for('static', filename='svg/arrow_3.svg')}}" />
|
|
|
|
{% block launch %}
|
|
|
|
{% include "distribusiworkflow/launch.html" %}
|
|
|
|
{% endblock launch%}
|
2022-02-18 09:58:24 +01:00
|
|
|
{%endif%}
|
2022-01-07 16:55:40 +01:00
|
|
|
</div>
|
2022-03-04 21:10:06 +01:00
|
|
|
{% if css_selected %}
|
|
|
|
<p id="cssSelected" hidden>css selected</p>
|
|
|
|
{% endif %}
|
2022-01-05 15:10:18 +01:00
|
|
|
{% endblock main %}
|