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

« back to all changes in this revision

Viewing changes to src/schooltool/requirement/browser/scoresystems_overview.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" i18n:domain="schooltool.gradebook">
 
3
<head>
 
4
  <title metal:fill-slot="title" i18n:translate="">Score Systems</title>
 
5
</head>
 
6
<body>
 
7
 
 
8
<h1 metal:fill-slot="content-header"
 
9
    i18n:translate="">Score Systems</h1>
 
10
 
 
11
<metal:block metal:fill-slot="body"
 
12
             tal:define="scoresystems view/scoresystems">
 
13
 
 
14
  <form method="post"
 
15
        tal:attributes="action string:${context/@@absolute_url}/index.html">
 
16
    <input type="hidden" name="form-submitted" value="" />
 
17
 
 
18
    <table class="schooltool_gradebook">
 
19
      <tr>
 
20
        <th class="cell header fully_padded" i18n:translate="">Delete?</th>
 
21
        <th class="cell header fully_padded" i18n:translate="">Score System</th>
 
22
      </tr>
 
23
 
 
24
      <tr class="bordered"
 
25
          tal:repeat="scoresystem scoresystems">
 
26
        <td class="cell fully_padded">
 
27
          <input type="checkbox"
 
28
                 tal:attributes="name scoresystem/hide_name;" />
 
29
        </td>
 
30
        <td class="cell fully_padded">
 
31
          <a tal:content="scoresystem/title"
 
32
             tal:attributes="href scoresystem/url">Score System</a>
 
33
        </td>
 
34
      </tr>
 
35
    </table>
 
36
 
 
37
    <div class="controls">
 
38
      <input type="submit" class="button-ok" name="UPDATE_SUBMIT" value="Update"  i18n:attributes="value" />
 
39
    </div>
 
40
 
 
41
  </form>
 
42
</metal:block>
 
43
</body>
 
44
</html>