18 lines
358 B
HTML
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>
|