ruling_template/app/views/admin/ruling_templates/_template.html.erb

12 lines
535 B
Plaintext
Raw Permalink Normal View History

2017-08-02 09:07:55 +00:00
<li class="template">
<a data-title="<%= template.title %>" class="template-display-btn" href="<%= admin_ruling_template_path(template.id) %>">
<% if template.template_image_files.empty? %>
<img src="/assets/ruling_template/npa.png" />
<% else %>
<img src="<%= template.template_image_files.first.image_file.url %>" />
<% end %>
</a>
<div class="template-title">
<a data-title="<%= template.title %>" class="template-display-btn" href="<%= admin_ruling_template_path(template.id) %>"><%= template.title %></a>
</div>
</li>