Child: [ddf08c] (diff)

Download this file

tool_list.html    22 lines (17 with data), 459 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{% set hide_left_bar = True %}
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{type}} tools{% endblock %}
{% block extra_css %}
{% endblock %}
{% block inner_grid %}{% endblock %}
{% block header_classes %} colored title{% endblock %}
{% block header %}{{type}} tools{% endblock %}
{% block content %}
<div>
<ul>
{% for e in entries %}
<li><a href="{{e.url}}">{{e.label}}</a></li>
{% endfor %}
</ul>
</div>
{% endblock %}