summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/selectRT.html
blob: 713a45cf571a7166d71f20a85062dc3a4d96e348 (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
26
27
28
29
30
31
32
33
34
35

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

{% block content %}
<form method="." action="POST">
{% csrf_token %}
<b>Details of {{ gb }}</b>

<!-- -------------------------------------------- -->

<select id ="id_select_mem">
<option>-select-</option>
{% if finaldict %}
{% for key, val in finaldict.iteritems %}
    <option value="{{ val }}">{{ val }}</option>
{% endfor %}
{% else %}
    <option> No Member </option>
    <input type="button" id="id_back" value="Back"/>
{% endif %}
</select>

<!-- -------------------------------------------- -->
<input type="button" id="id_go" value="GO"/>
<input type="button" id="id_back" value="Back"/>
<input  id="id_left" type="hidden" value="{{ gb }}">
<input  id="id_rel" type="hidden" value="{{ reltit }}">
<input  id="id_back_url" type="hidden" value="{{ absolute_url_node }}">
<input  id="id_right" type="hidden" value=" ">

<!-- -------------------------------------------- -->

</form>
{% endblock %}