You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.5 KiB
HTML

{% extends 'base.html' %}
{% block content %}
<h1>{% block category_name %} Create a New Item {% endblock %}</h1>
<form method="post">
<div class="form-group">
<label for="content">Content</label>
<input type="text" name="content"
placeholder="Todo content" class="form-control"
value="{{ request.form['content'] }}"></input>
</div>
<div class="form-group">
<label for="cat">category/type</label>
<select class="form-control" name="cat">
<option value="New category" selected>New category</option>
{% for cat in categories %}
{% if cat['category_name'] == request.form['cat'] %}
<option value="{{ request.form['cat'] }}" selected>
{{ request.form['cat'] }}
</option>
{% else %}
<option value="{{ cat['category_name'] }}">
{{ cat['category_name'] }}
</option>
{% endif %}
{% endfor %}
</select>
</div>
<div class="form-group">
<label for="new_category">New Category</label>
<input type="text" name="new_category"
placeholder="New category name" class="form-control"
value="{{ request.form['new_category'] }}"></input>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
{% endblock %}