Files
deb-python-oauth2client/samples/django_sample/templates/buzz/welcome.html
2010-09-27 15:05:36 -04:00

34 lines
821 B
HTML

<html>
<head>
<title>Buzz Stuff</title>
<style type=text/css>
td { vertical-align: top; padding: 0.5em }
img { border:0 }
</style>
</head>
<body>
<table border=0>
{% for item in activitylist.items %}
<tr valign=top>
<td>
{% if item.actor.thumbnailUrl %}
<a href="{{ item.actor.profileUrl }}">
<img src="{{ item.actor.thumbnailUrl }}">
</a>
{% endif %}
<br>
<a href="{{ item.actor.profileUrl }}">{{ item.actor.name }}</a></td>
<td>
{{ item.object.content|safe }}
</td>
<td>
<a href="{{ item.object.links.alternate.0.href }}"><img
src="/static/go.png"></a>
</td>
</tr>
{% endfor %}
</table>
</body>
</html>