~ubuntu-branches/ubuntu/natty/schooltool.gradebook/natty

« back to all changes in this revision

Viewing changes to src/schooltool/gradebook/browser/request_student_report.pt

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2011-02-24 16:53:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110224165353-hi69ckyal3b8dyns
Tags: upstream-0.9.0~a1
ImportĀ upstreamĀ versionĀ 0.9.0~a1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<tal:define define="dummy view/update"/>
 
2
<html metal:use-macro="view/@@standard_macros/page"
 
3
      i18n:domain="schooltool.gradebook">
 
4
<head>
 
5
  <title metal:fill-slot="title" tal:content="view/title" />
 
6
</head>
 
7
<body>
 
8
 
 
9
<metal:block metal:fill-slot="body">
 
10
  <form method="post" class="standalone"
 
11
        tal:attributes="action string:${context/@@absolute_url}/${view/action}">
 
12
    <input type="hidden" name="form-submitted" value="" />
 
13
    <h3 tal:content="view/title" />
 
14
    <br />
 
15
 
 
16
    <tal:block condition="view/message">
 
17
      <span class="message" style="color: red"
 
18
            tal:content="view/message" />
 
19
      <br /><br />
 
20
    </tal:block>
 
21
 
 
22
    <label for="selectedTerm" class="gradebook_margin_left1" i18n:translate="">Term or Year</label>
 
23
    <select name="selectedTerm">
 
24
      <tal:block repeat="term view/availableTerms">
 
25
        <option
 
26
            tal:attributes="value term/value;
 
27
                            selected term/selected"
 
28
            tal:content="term/title" />
 
29
      </tal:block>
 
30
    </select>
 
31
 
 
32
    <div style="height: 5px;"></div>
 
33
 
 
34
    <div class="controls">
 
35
      <input type="submit" class="button-ok" name="DOWNLOAD" value="Download"
 
36
             i18n:attributes="value" />
 
37
      <tal:block metal:use-macro="view/@@standard_macros/cancel-button" />
 
38
    </div>
 
39
  </form>
 
40
 
 
41
</metal:block>
 
42
</body>
 
43
</html>
 
44