1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<tal:root
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
omit-tag="">
<div class="portlet" id="subscribers">
<h2>Subscribers</h2>
<div id="current_user_subscription" tal:define="menu context/menu:answers">
<div tal:content="structure menu/subscription/render" />
</div>
<div tal:define="menu context/menu:answers">
<div tal:content="structure menu/addsubscriber/render" />
</div>
<div id="other-question-subscribers"></div>
</div>
</tal:root>
|