18 lines
587 B
HTML
18 lines
587 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block styleincludes %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/components/dropdown.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/components/image_display.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<div class="container mt-5">
|
|
{{ form | safe }}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block scriptincludes %}
|
|
<script src="{{ url_for('static', filename='js/components/image_display.js') }}" defer></script>
|
|
<script src="{{ url_for('static', filename='js/components/dropdown.js') }}" defer></script>
|
|
{% endblock %}
|