Joe Gregorio | 845a545 | 2010-09-08 13:50:34 -0400 | [diff] [blame] | 1 | <html> |
| 2 | <head> |
| 3 | <title>Buzz Stuff</title> |
Joe Gregorio | b8262fc | 2010-09-09 11:31:30 -0400 | [diff] [blame^] | 4 | <style type=text/css> |
| 5 | td { vertical-align: top; padding: 0.5em } |
| 6 | img { border:0 } |
| 7 | </style> |
Joe Gregorio | 845a545 | 2010-09-08 13:50:34 -0400 | [diff] [blame] | 8 | </head> |
| 9 | <body> |
Joe Gregorio | b8262fc | 2010-09-09 11:31:30 -0400 | [diff] [blame^] | 10 | <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 Gregorio | 845a545 | 2010-09-08 13:50:34 -0400 | [diff] [blame] | 26 | {% endfor %} |
Joe Gregorio | b8262fc | 2010-09-09 11:31:30 -0400 | [diff] [blame^] | 27 | </table> |
Joe Gregorio | 845a545 | 2010-09-08 13:50:34 -0400 | [diff] [blame] | 28 | </body> |
| 29 | </html> |