~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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<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="">

<table style="width: 100%;">
  <tbody>
    <tr>
      <td class="icon left">
        <img src="/@@/blueprint" tal:replace="structure context/image:icon" />
      </td>
      <td>
        <strong><a tal:attributes="href context/fmt:url"
        tal:content="context/title">Spec Title Here</a></strong>
        <img src="/@@/info" alt="Informational"
             title="Informational specification"
             tal:condition="context/informational" />
<tal:block condition="context/milestone">
  <img alt="" src="/@@/milestone" />&nbsp;<a
     tal:attributes="href context/milestone/fmt:url"
     tal:content="context/milestone/name">colony3</a>
</tal:block>
<tal:block condition="context/assignee">
  (<a tal:replace="structure context/assignee/fmt:link">Foo Bar</a>)
</tal:block>
<div class="lesser" style="margin-left: 25px;">
  Definition status:
  <span tal:content="context/definition_status/title"
        tal:attributes="class string:specstatus${context/definition_status/name}"
        >Approved</span>,
  <span tal:condition="context/priority">Priority:
    <span tal:attributes="class string:specpriority${context/priority/name}" tal:content="context/priority/title">High</span></span><i
    tal:condition="not: context/priority">Proposed</i>,
    Delivery: <span tal:attributes="class string:specdelivery${context/implementation_status/name}" tal:content="context/implementation_status/title">High</span>
  in <span tal:replace="context/target/displayname">Ubuntu</span>.<br />
  <i tal:condition="not: context/direction_approved">Needs guidance.</i>
  <i tal:condition="context/is_blocked">Blocked.</i>
  <br />
  <span tal:replace="context/summary">
    summary here
  </span>
  <tal:block condition="context/specurl">
    <img src="/@@/link" />
    <a tal:attributes="href context/specurl">Web Page</a>.
  </tal:block>
  <i tal:condition="context/whiteboard"
     tal:content="context/whiteboard">white board goes here</i>
  <tal:fbreqs repeat="fbreq view/feedbackrequests">
    <b>Your feedback requested</b> by
    <span tal:replace="fbreq/requester/displayname">Foo Bar</span>.
    <i tal:content="fbreq/queuemsg"
       tal:condition="fbreq/queuemsg">Msg goes here</i>
  </tal:fbreqs>
  <tal:sprints condition="context/sprints">
  <br />
  <b>Sprints</b>:
    <tal:sprint_link repeat="sprint_link context/sprint_links">
       <a tal:condition="sprint_link/is_confirmed"
          tal:content="sprint_link/sprint/name"
          tal:attributes="href sprint_link/sprint/fmt:url">ubz</a>
    </tal:sprint_link>
  </tal:sprints>
        </div>
      </td>
    </tr>
  </tbody>
</table>
</tal:root>