12 lines
535 B
Plaintext
12 lines
535 B
Plaintext
|
<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>
|