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/_show_form.html.erb
2021-02-20 13:55:04 +01:00

22 lines
861 B
Plaintext

<%# FIXME: nie trzeba ustawiac goal_id, data-remote samo wysle %>
<%= goal_f.collection_select :id, @project.goals, :id, :name,
{include_blank: false, required: true, label: :field_goal},
autocomplete: 'off',
onchange: "$.ajax({
url: '#{goal_path(id: :goal_id)}'
.replace('goal_id', $('#target_goal_attributes_id').val()),
dataType: 'script'
});
return false;" %>
<%= link_to l(:button_add), '#',
onclick: "$.ajax({
url: '#{edit_goal_path(id: :goal_id)}'
.replace('goal_id', $('#target_goal_attributes_id').val()),
dataType: 'script'
});
return false;",
class: 'icon icon-add' %>
<% if goal_f.object.description? %>
<p style='white-space: pre-wrap;' ><%= goal_f.object.description %></p>
<% end %>