Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / landing_base.html @ 904fd3cd

History | View | Annotate | Download (1 kB)

1
{% extends "im/account_base.html" %}
2

    
3
{% load filters %}
4
{% block page.title %}Overview{% endblock %}
5

    
6
{% block page.body %}
7
<div class="landing-page">
8
    {% for id, service in services.items %}
9
    {% if service.dashboard.show %}
10
      <div class="two-cols clearfix dotted {{ id }} service-{{ id }}
11
        landing-service">
12
            <div class="rt">
13
                {% if service.url %}
14
                <a href="{{ service.url }}">
15
                {% endif %}
16
                <img class="pic" src="{% if service.dashboard.icon %}{{ service.dashboard.icon }}{% else %}{{ IM_STATIC_URL }}images/landing-{{ id }}.png{% endif %}" />
17
                {% if service.url %}
18
                </a>
19
                {% endif %}
20
            </div>
21
            <div class="lt">
22
                {{ service.dashboard.description }}
23
            </div>
24
        </div>
25
    {% endif %}
26
    {% endfor %}
27
</div>
28
<script type="text/javascript">
29
        $(document).ready(function() {
30
                $('body').append('<div id="hand">&nbsp;</div>');
31
        });
32
</script>        
33
{% endblock %}