~thomir-deactivatedaccount/sloecode/error-style

« back to all changes in this revision

Viewing changes to sloecode/templates/admin/person-manage.html

  • Committer: Thomi Richards
  • Date: 2011-01-13 22:46:12 UTC
  • mfrom: (32.1.6 help)
  • Revision ID: thomir@gmail.com-20110113224612-opf288pp22xeze3j
Admin templates now use url_for rather than hard-coded paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
<h2>Manage Users</h2>
8
8
<p>From here you can manage people in the sloecode system.</p>
9
9
<ul>
10
 
  <li>{{h.link_to('List, Update & Delete Users', '/a/person/retrieve')}}</li>
11
 
  <li>{{h.link_to('Create new User', '/a/person/create')}}</li>
 
10
  <li>{{h.link_to('List, Update & Delete Users',
 
11
    h.url_for(controller='/admin/person', action='retrieve'))}}</li>
 
12
  <li>{{h.link_to('Create new User',
 
13
    h.url_for(controller='/admin/person', action='create'))}}</li>
12
14
</ul>
13
15
 
14
16
{% endblock %}
 
 
b'\\ No newline at end of file'