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

« back to all changes in this revision

Viewing changes to src/schooltool/intervention/browser/notify_goals.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" i18n:translate="">Goal Notification</title>
5
 
</head>
6
 
<body>
7
 
  <h1 metal:fill-slot="content-header" i18n:translate="">Goal Notification</h1>
8
 
 
9
 
<metal:block metal:fill-slot="body">
10
 
  <div>
11
 
    <tal:if condition="not: view/goals">
12
 
      <ul><li i18n:translate="">There are no goals that need notification.</li></ul>
13
 
    </tal:if>
14
 
    <tal:if condition="view/goals">
15
 
      <p i18n:translate="">The following goals had notifications sent to the persons responsible:</p>
16
 
      <ul>
17
 
        <li tal:repeat="goal view/goals">
18
 
          <a href="" tal:content="goal/text"
19
 
             tal:attributes="href goal/url">
20
 
             Goal
21
 
          </a>
22
 
        </li>
23
 
      </ul>
24
 
    </tal:if>
25
 
  </div>
26
 
</metal:block>
27
 
</body>
28
 
</html>