~thomir-deactivatedaccount/sloecode/error-style

« back to all changes in this revision

Viewing changes to sloecode/templates/admin/project-update.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:
6
6
 
7
7
<h2>Update Project &quot;{{project.name}}&quot;</h2>
8
8
{% set mt = h.ModelTags(project) %}
9
 
{{h.form('/a/person/process_update/%d' % (project.id))}}
 
9
{{h.form(h.url_for(controller='/admin/project', action='process_update',
 
10
id=project.id))}}
10
11
<table>
11
12
    <td>Project Description:</td>
12
13
    <td>{{ mt.textarea('description') }}</td>