16 lines
606 B
Ruby
16 lines
606 B
Ruby
module ReadoutsHelper
|
|
def readout_markup(quantity, readout)
|
|
content = "#{' '*quantity.depth}#{quantity.name} #{format_amount(readout)}"
|
|
classes = 'bolded' if @routine.quantities.include?(quantity)
|
|
content_tag(:span, content, {class: classes}, false)
|
|
end
|
|
|
|
def action_links(m)
|
|
link_to(l(:button_retake), retake_measurement_path(m),
|
|
{remote: true, class: "icon icon-reload"}) +
|
|
link_to(l(:button_edit), edit_measurement_readouts_path(m),
|
|
{remote: true, class: "icon icon-edit"}) +
|
|
delete_link(measurement_path(m), {remote: true, data: {}})
|
|
end
|
|
end
|