padmatexts/padmaTexts/templates/text_list.html
2010-12-30 15:38:35 +05:30

16 lines
259 B
HTML

<!DOCTYPE html>
<html>
<head>
</head>
<body>
{% for t in texts %}
<p>
<a href="{{t.get_absolute_url}}" title="{{t.title}}">{{ t.title }}</a><br />
by {{ t.author }}<br />
{{ t.abstract }}
</p>
{% endfor %}
</body>
</html>