Mercurial > hg > discussions
comparison discusssions/templates/member.html @ 1:79ba50af9443
add more notes
author | k0s <k0scist@gmail.com> |
---|---|
date | Mon, 04 Jan 2010 21:17:41 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:c904249afb04 | 1:79ba50af9443 |
---|---|
1 | |
2 <a py:if="member['show_email']" href="mailto:${member['email']}"> | |
3 ${member['email']} | |
4 </a> | |
5 | |
6 <div> | |
7 <h2>Your forums:</h2> | |
8 <ul> | |
9 <li py:for="forum in forums"> | |
10 <a href="${forum['link']}"> | |
11 <img py:if="'image' in forum" src="forum['image']"/> | |
12 ${forum['name']} | |
13 </a> | |
14 <!-- unsubscribed or subscribe --> | |
15 </li> | |
16 </ul> | |
17 </div> | |
18 | |
19 <div> | |
20 <h2>Recent discussions:</h2> | |
21 <!-- TODO --> | |
22 </div> | |
23 | |
24 <!-- TODO: subscriptions: subscriber, digest: 'daily', 'monthly', etc --> | |
25 |