distribusi-verse/verse/templates/distribusiworkflow/theme.html

45 lines
1.4 KiB
HTML
Raw Normal View History

<div id="theme" class="workflow">
2022-03-28 18:33:48 +02:00
<h2>Step 2: Choose a theme (Optional)</h2>
2022-03-19 17:08:04 +01:00
<p>Select your Theme here. If you want to make own custom css, skip and go to
step 3.</p>
<p>Don't forget to press Save</p>
<hr>
<form method="POST" enctype="multipart/form-data" action="{{ url_for('theme') }}">
{{ themeform.csrf_token }}
<fieldset class="required">
{{ themeform.theme.label }}
{{ themeform.theme }}
</fieldset>
2022-03-19 17:08:04 +01:00
{% if files_uploaded or distribusi_live %}
<fieldset class="button required">
{{ themeform.save }}
</fieldset>
{% else %}
<p>
You need to upload your files first before you can a css theme
for your files.
</p>
<a href="#upload">Go to Step 1</a>
{% endif %}
</form>
<hr>
<form method="POST" enctype="multipart/form-data" action="{{ url_for('theme') }}">
{{ publicthemeform.csrf_token }}
<fieldset id="publicthemes" class="required">
2022-03-19 17:08:04 +01:00
{{ publicthemeform.publicthemes.label }}
{{ publicthemeform.publicthemes }}
2022-03-19 16:19:51 +01:00
</fieldset>
{% if files_uploaded or distribusi_live %}
<fieldset class="button required">
2022-03-19 17:08:04 +01:00
{{ publicthemeform.save }}
</fieldset>
{% else %}
<p>
You need to upload your files first before you can a css theme
for your files.
</p>
<a href="#upload">Go to Step 1</a>
{% endif %}
</form>
</div>