To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / issue_categories / _form.rhtml @ 441:cbce1fd3b1b7

History | View | Annotate | Download (240 Bytes)

1
<%= error_messages_for 'category' %>
2

    
3
<div class="box">
4
<p><%= f.text_field :name, :size => 30, :required => true %></p>
5
<p><%= f.select :assigned_to_id, @project.users.sort.collect{|u| [u.name, u.id]}, :include_blank => true %></p>
6
</div>