2022-03-04 21:10:06 +01:00
|
|
|
<div id="launch" class="workflow">
|
2022-03-19 22:43:17 +01:00
|
|
|
<h2>Step 4: Distribusi</h2>
|
2022-03-25 13:52:01 +01:00
|
|
|
<p class="tooltip">Run distribusi on your files. This will generate your website and make
|
|
|
|
your content public. <span class="tooltiptext">Distribusi will unpack your zip file and turn it into a website!
|
|
|
|
</span></p>
|
2022-01-23 14:36:23 +01:00
|
|
|
<form method="POST" enctype="multipart/form-data" action="{{ url_for('distribusi') }}">
|
|
|
|
{{ distribusiform.csrf_token }}
|
2022-03-18 17:32:49 +01:00
|
|
|
{% if files_uploaded or distribusi_live %}
|
2022-01-23 14:36:23 +01:00
|
|
|
<fieldset class="button required">
|
|
|
|
{{ distribusiform.submit }}
|
|
|
|
</fieldset>
|
2022-01-23 15:21:33 +01:00
|
|
|
{% else %}
|
2022-03-25 13:52:01 +01:00
|
|
|
<p class="tooltip">
|
2022-01-23 15:21:33 +01:00
|
|
|
You need to upload your files first before you can run distribusi
|
|
|
|
on your files.
|
2022-03-25 13:52:01 +01:00
|
|
|
<span class="tooltiptext">Go back to step 1 and upload a zipfile with
|
|
|
|
your files</span>
|
2022-01-23 15:21:33 +01:00
|
|
|
</p>
|
|
|
|
<a href="#upload">Go to Step 1</a>
|
|
|
|
{% endif %}
|
2022-01-23 14:36:23 +01:00
|
|
|
</form>
|
|
|
|
</div>
|