~ubuntu-branches/ubuntu/raring/schooltool.intervention/raring

« back to all changes in this revision

Viewing changes to src/schooltool/intervention/browser/templates/section_interventions.pt

  • Committer: Gediminas Paulauskas
  • Date: 2011-09-19 16:56:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: menesis@pov.lt-20110919165645-718diuud5tc4mjsx
Tags: 0.5.0-0ubuntu1
* New upstream release.
* debian/rules: move gradebook to Suggests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html metal:use-macro="view/@@standard_macros/page"
 
2
      i18n:domain="schooltool.intervention">
 
3
<head>
 
4
  <title metal:fill-slot="title"
 
5
         i18n:translate="">
 
6
    Section Interventions
 
7
  </title>
 
8
 
 
9
  <metal:block metal:fill-slot="extrahead">
 
10
    <link rel="stylesheet" type="text/css" href="section_interventions.css"
 
11
          tal:attributes="href context/++resource++section_interventions.css"/>
 
12
  </metal:block>
 
13
 
 
14
</head>
 
15
<body>
 
16
 
 
17
<h1 metal:fill-slot="content-header"
 
18
    tal:content="view/heading">Contents</h1>
 
19
 
 
20
<metal:block metal:fill-slot="body">
 
21
 
 
22
<table class="students_nav">
 
23
 
 
24
  <tr>
 
25
    <th />
 
26
    <th>
 
27
    <tal:block tal:repeat="tab view/iterTabs">
 
28
      <tal:block condition="tab/active">
 
29
        <div class="tabmenu">
 
30
          <p tal:content="tab/title">Selected Tab</p>
 
31
        </div>
 
32
      </tal:block>
 
33
      <tal:block condition="not:tab/active">
 
34
        <div class="tabmenu">
 
35
          <a tal:attributes="href tab/url"
 
36
             tal:content="tab/title">Not Selected Tab</a>
 
37
        </div>
 
38
      </tal:block>
 
39
    </tal:block>
 
40
    </th>
 
41
  </tr>
 
42
 
 
43
  <tr tal:repeat="student view/listStudents">
 
44
    <td>
 
45
      <a tal:attributes="href student/url"
 
46
         tal:content="student/name">Student Name</a>
 
47
    </td>
 
48
    <td>
 
49
      <tal:block repeat="link student/links">
 
50
        <div class="student_nav_link">
 
51
          <a tal:attributes="href link/url"
 
52
             tal:content="link/title">Do Something</a>
 
53
        </div>
 
54
      </tal:block>
 
55
    </td>
 
56
  </tr>
 
57
 
 
58
</table>
 
59
</metal:block>
 
60
 
 
61
</body>
 
62
</html>