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.
22 lines
785 B
22 lines
785 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>
|
|
<hr/>
|
|
<h5>Your first confession!</h5>
|
|
<input type="text" name="confession[description]"><br/>
|
|
<input type="date" name="confession[occurred_at]"><br/>
|
|
<input type="submit" value="Here I am">
|
|
</form>
|