annotate app/views/issue_categories/_form.rhtml @ 596:fcff84e1c1ce
feature_36
In the remote call now only passing the id of the form's object, instead of the complete name of the object.
author |
luisf <luis.figueira@eecs.qmul.ac.uk> |
date |
Tue, 16 Aug 2011 11:47:30 +0100 |
parents |
94944d00e43c |
children |
|
rev |
line source |
Chris@0
|
1 <%= error_messages_for 'category' %>
|
Chris@0
|
2
|
Chris@0
|
3 <div class="box">
|
Chris@0
|
4 <p><%= f.text_field :name, :size => 30, :required => true %></p>
|
chris@37
|
5 <p><%= f.select :assigned_to_id, @project.users.sort.collect{|u| [u.name, u.id]}, :include_blank => true %></p>
|
Chris@0
|
6 </div>
|