Sha256: 07f91ad04269d00a5223c0342e16f5b44ab43133d0588fe71b12befa9f3a10fc
Contents?: true
Size: 801 Bytes
Versions: 7
Compression:
Stored size: 801 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', '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
7 entries across 7 versions & 1 rubygems