You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
627 B

<form action="<%= transgressions_path %>" method="POST"
class='transgression'>
<input type="hidden" name="authenticity_token"
value="<%= form_authenticity_token %>">
<input type="text" name="transgression[description]"
placeholder="Weaknesses are beautiful..."
value="<%= @transgression.description %>"><br/>
<select name="transgression[sin_type]">
<% Transgression::SIN_TYPES.each do |sin| %>
<option value="<%= sin %>"
<%= @transgression.sin_type == sin ? "selected" : "" %>>
<%= sin %>
</option>
<% end %>
</select>
<input type="submit" value="Here I am">
</form>