Compare commits
No commits in common. '2ff60e02e9d5d6ba4e2d7bae164c0bead01953c6' and '8000d11872bc5a44a174bd54322f35f406b9dfa6' have entirely different histories.
2ff60e02e9
...
8000d11872
Binary file not shown.
Binary file not shown.
@ -1,41 +0,0 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<h1>{% block title %} Edit an 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="{{ todo['content'] or request.form['content'] }}"></input>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="list">List</label>
|
||||
<select class="form-control" name="list">
|
||||
{% for list in lists %}
|
||||
{% if list['title'] == request.form['list'] %}
|
||||
<option value="{{ request.form['list'] }}" selected>
|
||||
{{ request.form['list'] }}
|
||||
</option>
|
||||
|
||||
{% elif list['title'] == todo['title'] %}
|
||||
<option value="{{ todo['title'] }}" selected>
|
||||
{{ todo['title'] }}
|
||||
</option>
|
||||
|
||||
{% else %}
|
||||
<option value="{{ list['title'] }}">
|
||||
{{ list['title'] }}
|
||||
</option>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
Loading…
Reference in New Issue