~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/templates/person-synchronised-packages.pt

  • Committer: Julian Edwards
  • Date: 2011-09-21 11:24:53 UTC
  • mto: This revision was merged to the branch mainline in revision 14004.
  • Revision ID: julian.edwards@canonical.com-20110921112453-6132qxw0gl2q2306
remove unneeded interpreter in txlongpoll recipe

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
<html
3
 
  xmlns="http://www.w3.org/1999/xhtml"
4
 
  xmlns:tal="http://xml.zope.org/namespaces/tal"
5
 
  xmlns:metal="http://xml.zope.org/namespaces/metal"
6
 
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
7
 
  metal:use-macro="view/macro:page/main_only"
8
 
  i18n:domain="launchpad"
9
 
>
10
 
 
11
 
<body>
12
 
 
13
 
<div metal:fill-slot="heading">
14
 
  <h1 tal:content="view/page_title"/>
15
 
</div>
16
 
 
17
 
<div metal:fill-slot="main">
18
 
  <div class="top-portlet">
19
 
    <tal:navlinks replace="structure context/@@+related-software-navlinks"/>
20
 
  </div>
21
 
 
22
 
  <div id="packages" class="top-portlet">
23
 
 
24
 
  <tal:navigation_top
25
 
       replace="structure view/batchnav/@@+navigation-links-upper" />
26
 
 
27
 
  <tal:synchronised-packages
28
 
    define="spphs view/batch">
29
 
 
30
 
  <table class="listing" tal:condition="spphs">
31
 
    <thead>
32
 
      <tr>
33
 
        <th>Name</th>
34
 
        <th>Uploaded to</th>
35
 
        <th>Version</th>
36
 
        <th>When</th>
37
 
        <th>Failures</th>
38
 
        <th>Bugs</th>
39
 
        <th>Questions</th>
40
 
      </tr>
41
 
    </thead>
42
 
    <tbody>
43
 
      <div metal:use-macro="context/@@+person-macros/spphs-rows" />
44
 
    </tbody>
45
 
  </table>
46
 
 
47
 
  <tal:navigation_bottom
48
 
       replace="structure view/batchnav/@@+navigation-links-lower" />
49
 
 
50
 
  <tal:no_packages condition="not: spphs">
51
 
    <tal:name replace="context/fmt:displayname"/> has not synchronised any packages.
52
 
  </tal:no_packages>
53
 
 
54
 
  </tal:synchronised-packages>
55
 
  </div>
56
 
</div>
57
 
 
58
 
</body>
59
 
</html>