summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/fillRT.html
blob: 875a40f86e1a3290e251ac47fb858dc7bc747644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25


{% extends "objectapp/base.html" %}
{% load i18n %}
{% block content %}

<form method="." action="POST">
{% csrf_token %}

<select id = "id_select_mem">
  <option>-select-</option>
{% if memdict %}
{% for key, val in memdict.iteritems %}
<option value="{{ key }}">{{ val }}</option>
{% endfor %} 
{% else %}
<option>Nothing</option>
{% endif %}
</select>

<input type="button" id="id_submit_rt" value="Go"/>

</form>
{% endblock %}