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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/user-edit.html

  • Committer: William Grant
  • Date: 2010-07-27 12:09:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1826.
  • Revision ID: grantw@unimelb.edu.au-20100727120913-v0kfnwxzbiwrjnue
(simple)json always returns a unicode when decoding, while cjson returned a str where possible. This makes cPickle unhappy, so convert back to a str.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
          <input type="text" name="email" id="email" size="40" />
29
29
          <span py:if="'email' in errors" class="form_error">${errors.email}</span>
30
30
        </div>
 
31
        <div>
 
32
          <label for="svn_pass">Subversion URL:</label>
 
33
          ${svn_url}
 
34
          <a class="helpaction" href="/+help/Files/Subversion#external" title="What's this?"></a>
 
35
        </div>
 
36
        <div>
 
37
          <label for="svn_pass">Subversion password:</label>
 
38
          <!-- Hidden from view for security reasons -->
 
39
          <span id="svn_pass" style="display: none">${svn_pass}</span>
 
40
          <a id="svn_pass_show" class="fakelink"
 
41
              onclick="$('#svn_pass').show(); $('#svn_pass_show').hide(); $('#svn_pass_hide').show()">(show)</a>
 
42
          <a id="svn_pass_hide" class="fakelink" style="display: none"
 
43
              onclick="$('#svn_pass').hide(); $('#svn_pass_show').show(); $('#svn_pass_hide').hide()">(hide)</a>
 
44
        </div>
31
45
        <div class="submit form_error" py:if="defined('error_value')" py:content="error_value" />
32
46
        <div class="submit"><input type="submit" value="Save" /></div>
33
47
      </form>