distribusi-verse: medium-tech web app content management system for the web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
|
|
<div id="buttons">
|
|
|
|
<div class="overview">
|
|
|
|
<a href="/">
|
|
|
|
<input type="button" name="button" value="Overview"></input>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="logout">
|
|
|
|
<a href="/logout">
|
|
|
|
<input type="button" name="button" value="Logout"></input>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="mainworkflow">
|
|
|
|
{% 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%}
|
|
|
|
</div>
|
|
|
|
{% endblock main %}
|