Sha256: 09a86f79a8c5daf0b28c426c42ce3f7b68cac1770c34c63d8dc1800ae292b14d
Contents?: true
Size: 819 Bytes
Versions: 10
Compression:
Stored size: 819 Bytes
Contents
<p class="form-fields"> <%= f.label :title %> <%= f.text_field :title, :size => 52 %> </p> <p class="form-fields"> <%= f.label :description %> <%= f.text_area :description, :size => "60x8" %> </p> <% unless params[:action] = "new" %> <p class="form-fields"> <%= f.label :status %> <%= f.select :status, ['new', 'in_progress', 'quality_assurance', 'completed'] %> </p> <% end %> <p class="form-fields"> <%= f.label :points %> <%= f.select :points, (1..10).to_a %> </p> <% unless params[:action] = "new" %> <p class="form-fields"> <%= f.label :iteration %> <%= f.select :iteration_id, @iterations.map {|iteration| [iteration.name, iteration.id]}.insert(0,["Not Assigned",'']) %> </p> <% else %> <%=f.hidden_field :iteration_id %> <% end %>
Version data entries
10 entries across 10 versions & 1 rubygems