23 lines
		
	
	
	
		
			677 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			677 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block app_content %}
 | 
						|
    <h1>Download</h1>
 | 
						|
    <form action="" method="post" novalidate>
 | 
						|
        {{ form.hidden_tag() }}
 | 
						|
        <p>
 | 
						|
            {{ form.date.label }}<br>
 | 
						|
            {{ form.date() }}<br>
 | 
						|
            {% for error in form.date.errors %}
 | 
						|
            <span style="color: red;">[{{ error }}]</span>
 | 
						|
            {% endfor %}
 | 
						|
        </p>
 | 
						|
        <p>
 | 
						|
            {{ form.length.label }}<br>
 | 
						|
            {{ form.length() }}<br>
 | 
						|
            {% for error in form.length.errors %}
 | 
						|
            <span style="color: red;">[{{ error }}]</span>
 | 
						|
            {% endfor %}
 | 
						|
        </p>
 | 
						|
        <p>{{ form.submit() }}</p>
 | 
						|
    </form>
 | 
						|
{% endblock %}
 |