blob: da40a16bbf1542ed8fadae0c41520dd6edd8b770 [file] [log] [blame]
Joe Gregorio845a5452010-09-08 13:50:34 -04001<html>
2 <head>
3 <title>Buzz Stuff</title>
Joe Gregoriob8262fc2010-09-09 11:31:30 -04004 <style type=text/css>
5 td { vertical-align: top; padding: 0.5em }
6 img { border:0 }
7 </style>
Joe Gregorio845a5452010-09-08 13:50:34 -04008 </head>
9 <body>
Joe Gregoriob8262fc2010-09-09 11:31:30 -040010 <p><a href="{{ logout }}">Logout</a></p>
11 <table border=0>
12 {% for item in activitylist.items %}
13 <tr valign=top>
14 <td>
15 <a href="{{ item.actor.profileUrl }}"><img
16 src="{{ item.actor.thumbnailUrl }}"></a><br>
17 <a href="{{ item.actor.profileUrl }}">{{ item.actor.name }}</a></td>
18 <td>
19 {{ item.object.content }}
20 </td>
21 <td>
22 <a href="{{ item.object.links.alternate.0.href }}"><img
23 src="/static/go.png"></a>
24 </td>
25 </tr>
Joe Gregorio845a5452010-09-08 13:50:34 -040026 {% endfor %}
Joe Gregoriob8262fc2010-09-09 11:31:30 -040027 </table>
Joe Gregorio845a5452010-09-08 13:50:34 -040028 </body>
29</html>