Skip to content

Commit

Permalink
Added form for information of Items
Browse files Browse the repository at this point in the history
  • Loading branch information
DipanshKhandelwal committed Nov 10, 2017
1 parent fa25374 commit 4fb9681
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion more/templates/more/more.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{% extends 'basic/base.html' %}

{% block content %}
This is more page.
<form name="itemform" action="" method="post">
<label>Items: </label>
{% csrf_token %}
<select id="items" name="itemform">
{% for i in Items %}
<option value={{i}}>{{i}}</option>
{% endfor %}
</select>
<input type="submit" value="Get">
</form>
{% endblock %}

0 comments on commit 4fb9681

Please sign in to comment.