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 %}
|
|
|
|
<section id="upload">
|
|
|
|
<h3>Upload</h3>
|
|
|
|
<p>Upload button</p>
|
|
|
|
<form method="POST" enctype="multipart/form-data" action="{{ url_for('upload') }}">
|
|
|
|
{{ uploadform.csrf_token }}
|
|
|
|
<fieldset class="required">
|
|
|
|
{{ uploadform.sitename.label }}
|
|
|
|
{{ uploadform.sitename }}
|
|
|
|
{% for message in uploadform.sitename.errors %}
|
|
|
|
<div class="error">{{ message }}</div>
|
|
|
|
{% endfor %}
|
|
|
|
</fieldset>
|
|
|
|
<fieldset class="required">
|
|
|
|
{{ uploadform.zipfile.label }}
|
|
|
|
{{ uploadform.zipfile }}
|
|
|
|
{% for message in uploadform.zipfile.errors %}
|
|
|
|
<div class="error">{{ message }}</div>
|
|
|
|
{% endfor %}
|
|
|
|
</fieldset>
|
|
|
|
{{ uploadform.submit }}
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
<section id="theme">
|
|
|
|
<h3>Theme</h3>
|
|
|
|
<p>dropdown css file selector</p>
|
|
|
|
</section>
|
|
|
|
<section id="edit">
|
|
|
|
<h3>Edit</h3>
|
|
|
|
<p>go to CSS editor</p>
|
|
|
|
</section>
|
|
|
|
<section id="distribusi">
|
|
|
|
<h3>Distribusi</h3>
|
|
|
|
<p>run distribusi on your files</p>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{% endblock main %}
|