diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2012-10-22 17:33:31 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2012-10-22 18:52:31 +1100 |
commit | b703f2aaa338e3837561676e4ba90f6c99745c54 (patch) | |
tree | ada1126ba6dfa2eb8fcefd92fcc25bb11314bb99 | |
parent | bef8155a139c0aab2e424a8dd9aabe6cf140ede2 (diff) |
Allow disclosure log url to be edited in admin interface
-rw-r--r-- | app/views/admin_public_body/_form.rhtml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/admin_public_body/_form.rhtml b/app/views/admin_public_body/_form.rhtml index d854b53f5..0d6ae51e2 100644 --- a/app/views/admin_public_body/_form.rhtml +++ b/app/views/admin_public_body/_form.rhtml @@ -38,6 +38,9 @@ <p><label for="<%= form_tag_id(t.object_name, :publication_scheme, locale) %>">Publication scheme URL</label><br/> <%= t.text_field :publication_scheme, :size => 60, :id => form_tag_id(t.object_name, :publication_scheme, locale) %></p> + <p><label for="<%= form_tag_id(t.object_name, :disclosure_log, locale) %>">Disclosure log URL</label><br/> + <%= t.text_field :disclosure_log, :size => 60, :id => form_tag_id(t.object_name, :disclosure_log, locale) %></p> + <p><label for="<%= form_tag_id(t.object_name, :notes, locale) %>">Public notes</label> <small>(HTML, for users to consider when making FOI requests to the authority)</small><br/> <%= t.text_area :notes, :rows => 3, :cols => 60, :id => form_tag_id(t.object_name, :notes, locale) %></p> </div> |