padmatexts/padmaTexts/templates/text_list.html

18 lines
316 B
HTML
Raw Normal View History

2010-11-11 00:34:17 +00:00
<!DOCTYPE html>
<html>
<head>
</head>
<body>
{% for t in texts %}
2010-12-30 10:08:35 +00:00
<p>
<a href="{{t.get_absolute_url}}" title="{{t.title}}">{{ t.title }}</a><br />
by {{ t.author }}<br />
2010-12-30 12:07:24 +00:00
{% autoescape off %}
2010-12-30 10:08:35 +00:00
{{ t.abstract }}
2010-12-30 12:07:24 +00:00
{% endautoescape %}
2010-12-30 10:08:35 +00:00
</p>
2010-11-11 00:34:17 +00:00
{% endfor %}
</body>
</html>