padmatexts/padmaTexts/templates/text_list.html

12 lines
181 B
HTML
Raw Normal View History

2010-11-11 00:34:17 +00:00
<!DOCTYPE html>
<html>
<head>
</head>
<body>
{% for t in texts %}
<a href="{{t.get_absolute_url}}" title="{{t.title}}">{{ t.title }}</a><br />
{% endfor %}
</body>
</html>