~launchpad-pqm/launchpad/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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"
  tal:define="tasks context/bugtasks"
  class="portlet">
  <h2>Bug watch links</h2>
    <div tal:condition="tasks" class="two-column-list">
      <dl tal:repeat="task tasks">
        <dt>On
          <span tal:replace="task/bugtargetname">task context name</span>
        </dt>
        <dd>
          <a tal:attributes="href task/fmt:url">
            Bug #<span tal:replace="task/bug/id">42525</span>
          </a>
        </dd>
      </dl>
    </div>
    <span tal:condition="not: tasks">
        There are currently no links to this bug watch.
    </span>
</div>