Skip to content

Commit

Permalink
Fix variable name in list_view template
Browse files Browse the repository at this point in the history
  • Loading branch information
shacker committed Sep 23, 2016
1 parent 1ff499a commit 6a78c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion todo/templates/todo/view_list.html
Expand Up @@ -70,7 +70,7 @@ <h2 style="margin-bottom:0px;" id="slideToggle" >&rarr; Click to add task &larr;

<input type="hidden" name="priority" value="999" id="id_priority">
<input type="hidden" name="created_by" value="{{ request.user.id }}" id="id_created_by">
<input type="hidden" name="list" value="{{ listid }}" id="id_list">
<input type="hidden" name="list" value="{{ list.id }}" id="id_list">
<input type="hidden" name="created_date" value="{{ created_date }}" id="id_created_date">
<p><input type="submit" name="add_task" value="Add task" class="todo-button"></p>
</div>
Expand Down

0 comments on commit 6a78c3f

Please sign in to comment.