##// END OF EJS Templates
Client changes to return answer to the web page.
Client changes to return answer to the web page.

File last commit:

r156:157
r166:167
Show More
index.html
61 lines | 2.2 KiB | text/html | HtmlDjangoLexer
{% extends "base.html" %}
{% block title %}ABS CONTROL:::::{% endblock %}
{% block scripting %}
{% if profile_list %}
<script src="/static/static/js/profiles.js"></script>
{% endif %}
{% endblock %}
{% block content %}
<div id="content">
{% block leftcolumn %}
<div id="leftcolumn">
<div id="lsProfiles">
<div id="infoProfiles">
<label for="lblProfile" class="lblInfo">Profiles:</label><br />
{% if profile_list %}
<select name="lsProfiles" id="listProfiles">
<option value="-1">Choose ...</option>
{% for entry in profile_list %}
{% if objProfile %}
{% if objProfile.id == entry.id %}
<option value="{{ entry.id }}" selected>{{ entry.name }}</option>
{% else %}
<option value="{{ entry.id }}">{{ entry.name }}</option>
{% endif %}
{% else %}
<option value="{{ entry.id }}">{{ entry.name }}</option>
{% endif %}
{% endfor %}
</select>
{% else %}
<label for="lblMessage" class="lblInfo">No profiles.</label>
{% endif %}
</div>
</div>
{% block mnu_profile %}
<nav class="MnuVertical" id="mnuProfiles">
<ul>
<li><a href="/abscontrol/new">New</a></li>
{% if objProfile %}
<li><a href="/abscontrol/edit/{{ objProfile.id }}">Edit</a></li>
<li><a href="#">Save</a></li>
{% endif %}
<li><a href="#">Save as</a></li>
<li><a href="/abscontrol/import">Import</a></li>
{% if objProfile %}
<li><a href="#" id="lnkExport" alt="{{ objProfile.id }}">Export</a></li>
<li><a href="#">Apply</a></li>
{% endif %}
</ul>
</nav>
{% endblock %}
</div>
{% endblock %}
{% block maincolumn %}
<div id="maincolumn">
</div>
{% endblock %}
<div class="cleardivs"></div>
</div>
{% endblock %}