padmatexts/padmaTexts/templates/text_list.html
2010-11-11 06:04:17 +05:30

12 lines
181 B
HTML

<!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>