Use double quotes in app/views/admin/legislation

This commit is contained in:
Julian Herrero
2019-03-14 17:09:31 +01:00
parent 5bfc9add78
commit 7b4b4b716c
13 changed files with 25 additions and 25 deletions

View File

@@ -172,7 +172,7 @@
</div>
<div class="documents small-12 column">
<%= render 'documents/nested_documents', documentable: @process, f: f %>
<%= render "documents/nested_documents", documentable: @process, f: f %>
</div>
<div class="small-12 column">
@@ -180,7 +180,7 @@
</div>
<div class="images small-12 column">
<%= render 'images/nested_image', imageable: @process, f: f %>
<%= render "images/nested_image", imageable: @process, f: f %>
</div>
<div class="small-12 column">

View File

@@ -7,7 +7,7 @@
<h2><%= @process.title %></h2>
<%= render 'subnav', process: @process, active: 'info' %>
<%= render "subnav", process: @process, active: "info" %>
<%= render 'form' %>
<%= render "form" %>
</div>

View File

@@ -7,7 +7,7 @@
<%= link_to t("admin.legislation.processes.index.create"), new_admin_legislation_process_path,
class: "button float-right" %>
<%= render 'shared/filter_subnav', i18n_namespace: "admin.legislation.processes.index" %>
<%= render "shared/filter_subnav", i18n_namespace: "admin.legislation.processes.index" %>
<% if @processes.any? %>
<h3><%= page_entries_info @processes %></h3>
@@ -37,7 +37,7 @@
<td>
<%= link_to t("admin.legislation.processes.index.delete"), admin_legislation_process_path(process),
method: :delete,
class: 'button hollow alert expanded' %>
class: "button hollow alert expanded" %>
</td>
</tr>
<% end %>