~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/templates/faq-index.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 04:55:30 UTC
  • mfrom: (14577.1.1 testfix)
  • Revision ID: launchpad@pqm.canonical.com-20111222045530-wki9iu6c0ysqqwkx
[r=wgrant][no-qa] Fix test_publisherconfig lpstorm import. Probably a
        silent conflict between megalint and apocalypse.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html
 
2
  xmlns="http://www.w3.org/1999/xhtml"
 
3
  xmlns:tal="http://xml.zope.org/namespaces/tal"
 
4
  xmlns:metal="http://xml.zope.org/namespaces/metal"
 
5
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
 
6
  metal:use-macro="view/macro:page/main_side"
 
7
  i18n:domain="launchpad"
 
8
>
 
9
  <body>
 
10
    <metal:registering fill-slot="registering">
 
11
      Created by <a tal:replace="structure context/owner/fmt:link" />
 
12
      on
 
13
      <span
 
14
        tal:attributes="title context/date_created/fmt:datetime"
 
15
        tal:content="context/date_created/fmt:displaydate">2005-10-05</span>
 
16
    </metal:registering>
 
17
 
 
18
    <metal:portlets fill-slot="side">
 
19
      <tal:menu replace="structure context/@@+global-actions" />
 
20
      <tal:related replace="structure context/@@+portlet-related-questions" />
 
21
    </metal:portlets>
 
22
 
 
23
    <div metal:fill-slot="main">
 
24
      <div class="top-portlet">
 
25
        <dl id="faq-keywords">
 
26
          <dt>Keywords:</dt>
 
27
          <dd tal:content="context/keywords">keywords</dd>
 
28
        </dl>
 
29
 
 
30
        <tal:last_updated_by condition="context/last_updated_by">
 
31
          <dl id="faq-updated" style="clear: both">
 
32
            <dt>Last updated by:</dt>
 
33
            <dd>
 
34
              <a tal:replace="structure context/last_updated_by/fmt:link" />
 
35
              on
 
36
             <span tal:attributes="title context/date_last_updated/fmt:datetime"
 
37
                tal:content="context/date_last_updated/fmt:displaydate"
 
38
                >2005-10-05</span>
 
39
            </dd>
 
40
          </dl>
 
41
        </tal:last_updated_by>
 
42
      </div>
 
43
 
 
44
 
 
45
    <div id="faq-content" class="portlet"
 
46
         tal:condition="context/content"
 
47
         tal:content="structure context/content/fmt:text-to-html">Content</div>
 
48
    </div>
 
49
  </body>
 
50
</html>
 
51