~launchpad-pqm/launchpad/devel

6529.2.9 by Maris Fogels
Moved the current focus porlet into it's own template.
1
<tal:root
2
  xmlns:tal="http://xml.zope.org/namespaces/tal"
3
  xmlns:metal="http://xml.zope.org/namespaces/metal"
4
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
5
  omit-tag="">
11666.5.7 by Paul Hummer
Reverted yui- to yui3-
6
  <div id="working-on" class="yui-g"
7183.7.1 by Curtis Hovey
Fix the currentfocus portlet to display blueprints when the user only has in progress
7
       tal:define="bugtasks view/assigned_bugs_in_progress;
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
8
                   specs view/assigned_specs_in_progress">
11666.5.7 by Paul Hummer
Reverted yui- to yui3-
9
    <div class="yui-u first">
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
10
      <div class="portlet"
11
        tal:condition="bugtasks">
12
        <h2>
13
          <span class="see-all">
6529.2.30 by Maris Fogels
Rework based on reviewer feedback.
14
            <a tal:attributes="href view/getURLToAssignedBugsInProgress">
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
15
              All bugs in progress
6529.2.30 by Maris Fogels
Rework based on reviewer feedback.
16
            </a>
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
17
          </span>
18
          Assigned bugs
19
        </h2>
20
21
        <table>
22
          <tr tal:repeat="bugtask bugtasks">
7675.382.2 by Edwin Grubbs
Added pillar info to bugs on person index page.
23
            <tal:define-vars define="show_extra_details python:True">
24
              <metal:task use-macro="bugtask/@@+bugtask-macros-listing/detailed" />
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
25
            </tal:define-vars>
26
          </tr>
27
        </table>
6529.2.9 by Maris Fogels
Moved the current focus porlet into it's own template.
28
      </div>
29
    </div>
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
30
11666.5.7 by Paul Hummer
Reverted yui- to yui3-
31
    <div class="yui-u">
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
32
      <div class="portlet"
33
        tal:condition="specs">
34
        <h2>
7355.1.1 by Diogo Matsubara
fix bug 256212 (XXX in templates should be updated so they're correctly captured by the xxxreporty.py tool), remove an XXX that's not relevant anymore and fix a trivial XXX.
35
          <tal:XXX condition="nothing">
36
            # XXX: Guilherme Salgado 2007-02-12:
37
            # This link should point to a list of the in-progress specs
38
            # assigned to this person, but we don't have a way to list that
39
            # right now, so we'll have to list all incomplete specs assigned
40
            # to the person.
41
          </tal:XXX>
9418.5.2 by Curtis Hovey
Rearraged person portlets and layout for 3.0.
42
          <span class="see-all">
43
            <a tal:attributes="href string:${context/fmt:url}/+specs?role=assignee">
44
              All assigned blueprints
45
            </a>
46
          </span>
47
          Assigned blueprints
48
        </h2>
49
50
        <table>
51
          <tr tal:repeat="spec specs"
52
              tal:replace="structure spec/@@+listing-simple" />
53
        </table>
6529.2.9 by Maris Fogels
Moved the current focus porlet into it's own template.
54
      </div>
55
    </div>
56
  </div>
57
</tal:root>