Refactor of pillar-server and pillar-web into a single python package. This simplifies the overall architecture of pillar applications. Special thanks @sybren and @venomgfx
26 lines
828 B
Plaintext
26 lines
828 B
Plaintext
| {% extends 'layout.html' %}
|
|
|
|
| {% block head %}
|
|
| {{ super() }}
|
|
|
|
// blueimp Gallery styles
|
|
link(rel="stylesheet", href="{{ url_for('static_pillar', filename='assets/css/blueimp/blueimp-gallery.min.css') }}")
|
|
|
|
// CSS to style the file input field as button and adjust the Bootstrap progress bars
|
|
link(rel="stylesheet", href="{{ url_for('static_pillar', filename='jquery-file-upload/css/jquery.fileupload.css') }}")
|
|
link(rel="stylesheet", href="{{ url_for('static_pillar', filename='jquery-file-upload/css/jquery.fileupload-ui.css') }}")
|
|
|
|
| {% endblock %}
|
|
|
|
| {% block body %}
|
|
.container
|
|
#project-container(style="background-color:white;padding:20px")
|
|
|
|
| {% include '_macros/_file_uploader_form.html' %}
|
|
|
|
| {% endblock %}
|
|
|
|
| {% block footer_scripts %}
|
|
| {% include '_macros/_file_uploader_javascript.html' %}
|
|
| {% endblock %}
|