cycles/period/templates/cycle/create.html

15 lines
506 B
HTML
Raw Normal View History

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}New Cycle{% endblock %}</h1>
{% endblock %}
{% block content %}
<form method="post">
<label for="start_time">Start Time</label>
<input name="start_time" id="title" value="{{ request.form['start_time'] }}" required type="date">
<label for="end_time">End Time</label>
<input name="end_time" id="end_time" value="{{ request.form['end_time'] }}" type="date">
<input type="submit" value="Save">
</form>
{% endblock %}