~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/templates/distributionmirror-prober-logs.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2009-08-27 11:34:14 UTC
  • mfrom: (9228.1.5 bug-416478)
  • Revision ID: launchpad@pqm.canonical.com-20090827113414-vzhyjb6bth0t2j49
[r=allenap][ui=noodles,
        barry][bug=416478] Update distribution mirror pages to UI 3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  xmlns:tal="http://xml.zope.org/namespaces/tal"
4
4
  xmlns:metal="http://xml.zope.org/namespaces/metal"
5
5
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
6
 
  xml:lang="en"
7
 
  lang="en"
8
 
  dir="ltr"
9
 
  metal:use-macro="context/@@main_template/master"
 
6
  metal:use-macro="view/macro:page/main_side"
10
7
  i18n:domain="launchpad"
11
8
>
12
9
 
13
10
<body>
14
11
 
15
 
<metal:rightportlets fill-slot="portlets_two">
16
 
  <div tal:replace="structure context/@@+portlet-details" />
17
 
</metal:rightportlets>
18
 
 
19
 
<metal:heading fill-slot="pageheading">
20
 
  <h1>Prober logs for
21
 
    "<tal:mirror replace="context/title">foobar</tal:mirror>"
22
 
  </h1>
23
 
</metal:heading>
24
 
 
25
 
<div metal:fill-slot="main">
26
 
 
27
 
  <p tal:condition="not: view/probe_records/currentBatch">
28
 
    This mirror has never been probed.
29
 
  </p>
30
 
 
31
 
  <tal:logs condition="view/probe_records/currentBatch">
 
12
<tal:main metal:fill-slot="main"
 
13
          define="overview_menu context/menu:overview;
 
14
                  has_records view/probe_records/currentBatch">
 
15
  <div class="top-portlet">
 
16
    <h1 tal:content="view/page_title">Foo mirror prober logs</h1>
 
17
 
 
18
    <p tal:condition="not: has_records">
 
19
      This mirror has never been probed.
 
20
    </p>
 
21
  </div>
 
22
  <tal:logs condition="has_records">
32
23
    <tal:navigation replace="structure view/probe_records/@@+navigation-links-upper" />
33
24
    <table class="listing">
34
25
      <thead>
52
43
    </table>
53
44
    <tal:navigation replace="structure view/probe_records/@@+navigation-links-lower" />
54
45
  </tal:logs>
 
46
</tal:main>
55
47
 
56
 
</div>
 
48
<tal:side metal:fill-slot="side">
 
49
  <tal:menu replace="structure context/@@+global-actions" />
 
50
</tal:side>
57
51
 
58
52
</body>
59
53
</html>