repo.or.cz
/
TownSquare.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Channel creation.
[TownSquare.git]
/
townsquare
/
templates
/
channel
/
view.mako
blob
82abee5fef13ba1aaf38efc988a45f84015736fd
1
<%inherit file="/base.mako"/>
2
3
<div>
4
<h1>Channel: ${h.literal(c.ch.name)}</h1>
5
<div>
6
${h.literal(c.ch.description)}
7
</div>
8
</div>
9
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