<%%= t('activerecord.attributes.<%= singular_table_name %>.<%= attribute.name %>') %> |
<%- if attribute.name.include?("picture") -%>
<%%= link_to "TODO: Anzeigen in Originalgröße", '#' %> <%%= image_tag(@<%= singular_table_name %>.<%= attribute.name %>_url(:display)) %> <%- elsif attribute.type == :boolean -%> <%%= @<%= singular_table_name %>.<%= attribute.name %> ? t('simple_form.yes') : t('simple_form.no') %> <%- elsif attribute.type == :belongs_to -%> <%%= @<%= singular_table_name %>.<%= attribute.name %>.name %> <%- else -%> <%%= @<%= singular_table_name %>.<%= attribute.name %> %> <%- end -%> |