1
0
This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
body_tracking/app/views/goals/_form.html.erb
2021-02-21 18:10:15 +01:00

11 lines
316 B
Plaintext

<%= error_messages_for @goal %>
<div class="box tabular">
<p><%= goal_f.text_field :name, required: true, style: "width: 95%;" %></p>
<p><%= goal_f.text_area :description, rows: 3, style: "width: 95%;" %></p>
<hr style="width: 95%;">
<%= render partial: 'targets/form', locals: {goal_f: goal_f} %>
</div>