1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<div
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
class="portlet" id="portlet-subscribers">
<div class="portletBody portletContent"
tal:define="context_menu view/context/menu:context">
<div>
<div class="section">
<div
tal:define="link context_menu/subscription"
tal:condition="link/enabled"
id="selfsubscriptioncontainer"
>
<a class="sprite add subscribe-self"
tal:attributes="href link/url"
tal:content="link/text" />
</div>
<div
tal:define="link context_menu/add_subscriber"
tal:condition="link/enabled"
tal:content="structure link/render"
/>
</div>
</div>
<h2>Subscribers</h2>
<div id="branch-subscribers-outer">
<div tal:replace="structure context/@@+branch-portlet-subscriber-content"
/>
</div>
</div>
</div>
|