redmine_dmsf/app/views/dmsf/_custom_fields.html.erb
2013-11-08 13:47:39 +01:00

9 lines
365 B
Plaintext

<% if object %>
<div class="dmsf-customfields">
<% object.show_custom_field_values.each do |custom_value| %>
<div class="dmsf-customfield-<%= custom_value.custom_field.id %> dmsf-customfield customfield">
<%= label_tag('', "#{h(custom_value.custom_field.name)}:") %> <%= show_value(custom_value) %>
</div>
<% end %>
</div>
<% end %>