Files
deb-python-oauth2client/samples/django_sample/templates/plus/welcome.html
2011-11-09 12:21:11 -05:00

18 lines
358 B
HTML

<html>
<head>
<title>Your Google+ Activity</title>
<style type=text/css>
td { vertical-align: top; padding: 0.5em }
img { border:0 }
</style>
</head>
<body>
<table border=1>
{% for item in activitylist.items %}
<tr><td>{{ item.object.content|safe }}</td></tr>
{% endfor %}
</table>
</body>
</html>