~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/security/logout.html

  • Committer: mattgiuca
  • Date: 2008-04-13 12:41:59 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:730
Added per-worksheet and per-subject score calculation.
common/db: Added functions worksheet_is_assessable and
            calculate_score_worksheet.
            (Added other helper functions too).
apps/tutorial: Expanded handle_subject_menu to include display of scores.
    (NOTE: IVLE does not apportion marks at this stage, just displays scores).
    * Displays under each assessable worksheet the number of mandatory
      exercises completed.
    * Displays at the bottom of the page the total number of mandatory
      exercises completed for the subject.
    * Note: Neither of these displays are visible if there are no assessable
      worksheets. If this doesn't show up, check that you have at least one
      worksheet with an 'assessable="true"' attribute in its top level
      element.
Added media/images/tutorial/tiny/semicomplete.png: Orange dot for the subject
menu.
Added new styles to media/tutorial/tutorial/css.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:py="http://genshi.edgewall.org/">
3
 
  <head>
4
 
    <title>Log out</title>
5
 
  </head>
6
 
  <body>
7
 
    <h1>Confirm log out</h1>
8
 
    <div id="ivle_padding">
9
 
      <p>Are you sure you want to log out?</p>
10
 
      <p>
11
 
        <form action="${path}" method="POST">
12
 
          <input type="submit" value="Log out" />
13
 
        </form>
14
 
      </p>
15
 
    </div>
16
 
  </body>
17
 
</html>