source: WAeUP_SRP/trunk/skins/waeup_student/study_level_view.pt @ 723

Last change on this file since 723 was 723, checked in by joachim, 18 years ago

Import and Manager view for full-time students + results

File size: 4.8 KB
Line 
1<metal:html tal:define="info context/getStudyLevelInfo;
2            is_manager info/is_manager|nothing;"
3            >
4  <metal:body use-macro="here/waeup_content_master/macros/master">
5    <metal:block fill-slot="header">
6      <a href=""
7         tal:attributes="href string:${here/academicsParent}">
8        <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/>
9        Up one level
10      </a>
11      <h3 tal:content="here/title_or_id" />
12      <div tal:condition="python:0" tal:content="info/container_path"/>
13      <div tal:condition="python:0" tal:content="info/cert_id"/>
14      <div tal:condition="python:0" tal:content="info/gpa"/>
15    </metal:block>
16    <metal:main fill-slot="main" tal:condition="python:1">
17      <span tal:omit-tag="" 
18            tal:content="structure python: info['doc'].render(layout_mode='view')" />
19     
20      <form action="" method="post" class="group"
21            tal:attributes="action info/action"
22            >
23        <table tal:condition="python: 1" class="contentListing" width="100%" summary="content layout" id="folder_content">     
24          <span tal:repeat="sem python:('first','second')">
25            <tr><th colspan="3" tal:content="python: test(sem == 'first','First Semester', 'Second Semester')" />
26            <tr tal:repeat="row python: info[sem]"
27                tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
28              <td align="left" valign="middle" style="width: 5px;"
29                  tal:condition="python:0 and is_manager">
30                <input type="checkbox" name="ids:list" value="" id="" class="noborder"
31                       tal:condition="is_manager"
32                       tal:define="id row/id"
33                       tal:attributes="value id;
34                       id python:'cb_' + id;
35                       checked python:id in info['choosen_ids'];"
36                       />
37                </td>
38                <td><a href="view" tal:attributes="href string:${row/url}">
39                    <strong tal:content="row/title" /></a> </td>
40                <td tal:content="row/id"></td>
41                <td tal:content="row/semester"></td>
42                <td tal:content="row/credits"></td>
43                <td tal:condition="is_manager" tal:content="row/score"></td>
44                <td tal:content="row/grade"></td>
45                <td tal:content="row/weight"></td>
46                <td tal:condition="python:0" tal:content="row/sum"></td>
47                <td tal:condition="python:0" tal:content="row/count"></td>
48                <td tal:condition="row/is_editable" tal:content="row/review_state"> </td>
49                <td>
50                <a tal:condition="row/is_editable"
51                    href="edit" tal:attributes="href string:${row/url}/external_edit_form"
52                    target="edit"
53                    onclick="javascript:window.open('','edit','width=600, height=700, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, status=no, resizable=no, dependent=no')">
54                    [edit]
55                    </a>
56                </td>
57              </tr>
58            </span>
59          </table>
60        <table width="100%" cellspacing="0" cellpadding="2"
61               class="folderButtons">
62          <tr>
63            <td align="left" valign="top" rowspan="3"></td>
64            <td align="left" valign="top">
65              <span tal:condition="python:0 and is_manager">
66                <input type="button" value="button_select_all" class="context"
67                       onclick="someJavaScriptFunctionThatWillBeReplaced"
68                       i18n:attributes="value"
69                       tal:attributes="onclick python:'toggleSelect(this, \'%s\', \'%s\')'
70                       % (cpsmcat('button_select_all'), cpsmcat('button_deselect_all'))"
71                       />
72                <input type="submit" name="approve_checked:method"
73                       class="context" value="Approve" />
74                <input type="submit" name="retract_checked:method"
75                       class="context" value="Retract" />
76                <input type="submit" name="folder_delete:method" value="button_delete"
77                       class="destructive" i18n:attributes="value"
78                       tal:attributes="onclick python:'return window.confirm(\'%s\')' %
79                       (cpsmcat('description_confirm_delete'), )"
80                       />
81                <input tal:condition="python: context.portal_type not in ('Semester','Certificate')"
82                       type="submit" name="id_rename_form:method"
83                       class="context" value="Change Object ID" i18n:attributes="value"
84                       />
85              </span>
86            </td>
87          </tr>
88        </table>
89      </form>
90    </metal:main>
91   
92    <metal:sub fill-slot="sub"/>
93  </metal:body>
94</metal:html>
Note: See TracBrowser for help on using the repository browser.