~launchpad-pqm/launchpad/devel

7675.295.11 by Curtis Hovey
Layout tweaks.
1
<div
7675.295.6 by Curtis Hovey
Added FAQ and questions to th project page.
2
  xmlns:tal="http://xml.zope.org/namespaces/tal"
3
  class="portlet" id="portlet-latest-faqs"
7675.295.8 by Curtis Hovey
Revised the layout to hide holes created by optional content.
4
  tal:define="faqs view/latest_faqs"
5
  tal:condition="faqs">
7675.295.6 by Curtis Hovey
Added FAQ and questions to th project page.
6
  <h2>
7
    <span class="see-all"><a
8
      tal:replace="structure view/menu:answers/list_all/fmt:link" /></span>
9
    FAQs for <tal:name replace="context/displayname" />
10
  </h2>
11
9073.1.8 by Curtis Hovey
Added test coverage for the FAQ portlet.
12
  <form id="question-search-form" method="get" accept-charset="UTF-8"
13
    tal:attributes="action view/portlet_action">
7675.295.6 by Curtis Hovey
Added FAQ and questions to th project page.
14
    <p>
15
      <tal:searchbox replace="structure view/widgets/search_text" />
16
      <input tal:replace="structure view/search_action/render" />
17
    </p>
18
  </form>
19
10865.1.6 by Curtis Hovey
Move cache instruction to the correct faq portlet. Purge the cache to show that users
20
  <ul tal:condition="faqs"
10921.2.1 by Curtis Hovey
template and menu changes to reduce timeouts.
21
    tal:content="cache:public, 3 hour">
7675.295.6 by Curtis Hovey
Added FAQ and questions to th project page.
22
    <li tal:repeat="faq faqs">
23
      <a class="sprite question"
24
        tal:attributes="href faq/fmt:url"
25
        tal:content="faq/title">How do I do this?</a>
26
    </li>
27
  </ul>
7675.295.11 by Curtis Hovey
Layout tweaks.
28
11326.2.11 by Brad Crittenden
Updated permissions for distro, FAQ, and questions.
29
  <ul class="horizontal">
7675.295.8 by Curtis Hovey
Revised the layout to hide holes created by optional content.
30
    <li>
31
      <a tal:replace="structure view/menu:answers/create_faq/fmt:link" />
32
    </li>
33
  </ul>
7675.295.6 by Curtis Hovey
Added FAQ and questions to th project page.
34
</div>