summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/label_list.html
blob: 33afde50487fd006a259d57c37c6cc6679af95e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
<h> List of Nodes </h>
<br>
</head>

<body>
<div>
<ul>
{% for item in lis %}
  <li><a href="{{ item.get_absolute_url }}" >{{ item.title }}</a></li>
{% endfor %}
</ul>
</div>
</body>
</html>