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

« back to all changes in this revision

Viewing changes to src/schooltool/intervention/browser/templates/intervention_goal.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" tal:content="view/heading" />
 
5
</head>
 
6
<body>
 
7
<metal:block metal:fill-slot="body">
 
8
 
 
9
<style type="text/css">
 
10
  td {
 
11
    width: 30em;
 
12
    height: 10em;
 
13
    vertical-align: top;
 
14
    padding-left:4px;
 
15
  }
 
16
</style>
 
17
 
 
18
<div class="standalone" style="width: 65em">
 
19
  <h3 tal:condition="view/heading"
 
20
      tal:content="view/heading" />
 
21
 
 
22
<table style="margin: 1.5em 1em 1.5em 1em;">
 
23
  <tr>
 
24
    <td>
 
25
      <h1 i18n:translate="">
 
26
        Persons responsible: <tal:block i18n:name="notified"
 
27
                                        tal:replace="view/notified" />
 
28
      </h1>
 
29
      <p tal:content="view/persons_responsible" />
 
30
    </td>
 
31
    <td />
 
32
  </tr>
 
33
 
 
34
  <tr>
 
35
    <td>
 
36
      <h1 i18n:translate="">Presenting concerns</h1>
 
37
      <p tal:content="context/presenting_concerns" />
 
38
    </td>
 
39
    <td>
 
40
      <h1 i18n:translate="">Goal</h1>
 
41
      <p tal:content="context/goal" />
 
42
    </td>
 
43
  </tr>
 
44
 
 
45
  <tr>
 
46
    <td>
 
47
      <h1 i18n:translate="">Strengths</h1>
 
48
      <p tal:content="context/strengths" />
 
49
    </td>
 
50
    <td>
 
51
      <h1 i18n:translate="">Indicators</h1>
 
52
      <p tal:content="context/indicators" />
 
53
    </td>
 
54
  </tr>
 
55
 
 
56
  <tr>
 
57
    <td>
 
58
      <h1 i18n:translate="">Intervention</h1>
 
59
      <p tal:content="context/intervention" />
 
60
    </td>
 
61
    <td>
 
62
      <h1 i18n:translate="">Timeline</h1>
 
63
      <p tal:content="view/timeline" />
 
64
    </td>
 
65
  </tr>
 
66
 
 
67
  <tr>
 
68
    <td>
 
69
      <h1 i18n:translate="">Goal met</h1>
 
70
      <p tal:content="view/goal_met" />
 
71
    </td>
 
72
    <td>
 
73
      <h1 i18n:translate="">Follow up notes</h1>
 
74
      <p tal:content="context/follow_up_notes" />
 
75
    </td>
 
76
  </tr>
 
77
</table>
 
78
</div>
 
79
 
 
80
</metal:block>
 
81
</body>
 
82
</html>