Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / timeline.html @ 3b258643

History | View | Annotate | Download (787 Bytes)

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

    
3
{% block page.body %}
4
<div class="projects">
5
        <div class="maincol {% block innerpage.class %}{% endblock %}">
6
            <form action="" method="post"
7
                    class="withlabels">{% csrf_token %}
8
                    {% include "im/form_render.html" %}
9
                    <div class="form-row submit">
10
                        <input type="submit" class="submit altcol" value="SUBMIT" />
11
                    </div>
12
            </form>
13
        </div>
14
</div>
15
<div class="timeline">
16
<table>
17
    <tr style="color:black; font-weight:bold;">
18
    {% for i in timeline_header %}
19
        <td>{{i}}</td>
20
    {% endfor %}
21
    </tr>
22
{% for o in timeline_body %}
23
    <tr style="color:black">
24
    {% for i in o %}
25
        <td>{{i}}</td>
26
    {% endfor %}
27
    </tr>
28
{% endfor %}
29
</table>
30
</div>
31
{% endblock %}