summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/base.html')
-rw-r--r--ishtar_common/templates/base.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/ishtar_common/templates/base.html b/ishtar_common/templates/base.html
index 8cd3c7793..b325be2fb 100644
--- a/ishtar_common/templates/base.html
+++ b/ishtar_common/templates/base.html
@@ -20,6 +20,7 @@
<script language="javascript" type="text/javascript" src="{{STATIC_URL}}js/grid.tbltogrid.js"></script>
<script language="javascript" type="text/javascript" src="{{STATIC_URL}}/js/ishtar.js"></script>
<link type="text/css" href="{{JQUERY_UI_URL}}jquery-ui.css" rel="stylesheet" />
+ <link rel="stylesheet" href="{{STATIC_URL}}/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="{{STATIC_URL}}/js/prettyPhoto/css/prettyPhoto.css" />
<link rel="stylesheet" href="{{STATIC_URL}}media/ui.jqgrid.css" />
<link rel="stylesheet" href="{{STATIC_URL}}/media/style.css" />
@@ -54,10 +55,10 @@
{% endblock %}
</div>
<div class="nav-button ui-state-default ui-corner-all" id="to_bottom_arrow">
- <span class="ui-icon ui-icon-circle-arrow-s"></span>
+ <i class="fa fa-arrow-circle-down" aria-hidden="true"></i>
</div>
<div class="nav-button ui-state-default ui-corner-all" id="to_top_arrow">
- <span class="ui-icon ui-icon-circle-arrow-n"></span>
+ <i class="fa fa-arrow-circle-up" aria-hidden="true"></i>
</div>
<div id="window"></div>
<div id="logo">
@@ -75,10 +76,10 @@
<td>
<select class='{{main_cls}}' id='current_{{model_name}}'>
<option class='normal' value=''>--</option>
- {% for val, label, selected, cls in items %}<option{% if cls %} class='{{cls}}'{% endif %} value='{{val}}'{% if selected %} selected="selected"{%endif%}>{{label}}</option>
+ {% for val, label, selected, cls in items %}<option{% if cls %} class='{{cls}}'{% endif %} value='{{val}}'{% if selected %} selected="selected"{% endif %}>{% ifequal cls 'basket' %}&#xf291; {% endifequal %}{{label}}</option>
{% endfor %}</select>
</td>{% with 'show-'|add:model_name as model_url%}
- <td><a href='#' onclick='load_current_window("{% url model_url 0 %}", "{{model_name}}");' class='display_details'>{% trans "Details" %}</a></td>
+ <td><a href='#' onclick='load_current_window("{% url model_url 0 %}", "{{model_name}}");' class='display_details'><i class="fa fa-info-circle" aria-hidden="true"></i></a></td>
{% endwith %}
</tr>
{% endfor %}