summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/selectRT.html
blob: cfec3c74cc87b2ee8e5f01ebd5d668c99e2c89b7 (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
36
37
38
39

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

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

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

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

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

<input  id="id_left" type="hidden" value="{{ gbid }}">
<input  id="id_right" type="hidden" value=" ">
<input  id="id_reltype" type="hidden" value=" ">
<input  id="id_back_url" type="hidden" value="{{ absolute_url_node }}">

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

<div id = "id_div1">
</div>

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

</form>
{% endblock %}