Channel creation.
[TownSquare.git] / townsquare / templates / channel / view.mako
blob82abee5fef13ba1aaf38efc988a45f84015736fd
1 <%inherit file="/base.mako"/>
3 <div>
4 <h1>Channel: ${h.literal(c.ch.name)}</h1>
5 <div>
6 ${h.literal(c.ch.description)}
7 </div>
8 </div>
10 % if c.ch.discussions.count() > 0:
11 <div>
12 <h2>Discussions</h2>
13 <ul>
14 % for p in c.ch.discussions:
15 <li><a href="${p.url}">${h.literal(p.name)}</a></li>
16 % endfor
17 </ul>
18 </div>
19 % endif