~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
<html
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:tal="http://xml.zope.org/namespaces/tal"
  xmlns:metal="http://xml.zope.org/namespaces/metal"
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
  xml:lang="en"
  lang="en"
  dir="ltr"
  metal:use-macro="view/macro:page/main_only"
  i18n:domain="launchpad"
>

<body>

<metal:main fill-slot="main">
  <metal:form use-macro="context/@@launchpad_form/form">

    <div metal:fill-slot="extra_info">
      <p>
        Please enter a short description (at least 4 words) in the language
        of your choice, that describes your problem. We will use it to look
        for similar questions that may already exist.
      </p>

      <tal:comment replace="nothing">
        This link should appear in the appropriate widget description,
        but cannot because of bug #72730.
      </tal:comment>
      <p><a href="/+editmylanguages">Change your
        preferred languages</a> to modify the list of languages available
        for writing the question.
      </p>
    </div>

    <div class="actions" metal:fill-slot="buttons">
      <input tal:replace="structure view/continue_action/render" />
      or <a tal:attributes="href view/cancel_url">Cancel</a>
    </div>

  </metal:form>
</metal:main>

</body>
</html>