~thomir-deactivatedaccount/sloecode/error-style

« back to all changes in this revision

Viewing changes to sloecode/templates/admin/project-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 Projects</h2>
8
8
<p>From here you can manage projects in the sloecode system.</p>
9
9
<ul>
10
 
  <li>{{h.link_to('List, Update & Delete Projects', '/a/project/retrieve')}}</li>
11
 
  <li>{{h.link_to('Create new Project', '/a/project/create')}}</li>
 
10
  <li>{{h.link_to('List, Update &amp; Delete Projects',
 
11
        h.url_for(controller='/admin/project',
 
12
            action='retrieve'))
 
13
        }}</li>
 
14
  <li>{{h.link_to('Create new Project',
 
15
        h.url_for(controller='/admin/project',
 
16
            action='create'))
 
17
        }}</li>
12
18
</ul>
13
19
 
14
20
{% endblock %}
 
 
b'\\ No newline at end of file'