Use double quotes in app/views/budgets
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<% provide :title do %><%= t('budgets.investments.index.title') %><% end %>
|
||||
<% provide :title do %><%= t("budgets.investments.index.title") %><% end %>
|
||||
<% content_for :header_addon do %>
|
||||
<%= render "shared/search_form",
|
||||
search_path: budget_investments_path(budget_id: @budget.id, page: 1),
|
||||
@@ -18,7 +18,7 @@
|
||||
<main id="budget-investments-main">
|
||||
|
||||
<% unless params[:search].present? %>
|
||||
<%= render '/budgets/investments/header' %>
|
||||
<%= render "/budgets/investments/header" %>
|
||||
<% end %>
|
||||
|
||||
<% if params[:search].present? || params[:advanced_search].present? %>
|
||||
@@ -73,7 +73,7 @@
|
||||
<% if investments_default_view? %>
|
||||
|
||||
<% @investments.each do |investment| %>
|
||||
<%= render partial: '/budgets/investments/investment',
|
||||
<%= render partial: "/budgets/investments/investment",
|
||||
locals: {
|
||||
investment: investment,
|
||||
investment_ids: @investment_ids,
|
||||
@@ -84,7 +84,7 @@
|
||||
<% else %>
|
||||
|
||||
<% @investments.each do |investment| %>
|
||||
<%= render partial: '/budgets/investments/investment_minimal',
|
||||
<%= render partial: "/budgets/investments/investment_minimal",
|
||||
locals: { investment: investment } %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
@@ -95,7 +95,7 @@
|
||||
<div class="small-12 medium-3 column">
|
||||
<aside class="margin-bottom">
|
||||
<div id="sidebar">
|
||||
<%= render '/budgets/investments/sidebar' %>
|
||||
<%= render "/budgets/investments/sidebar" %>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user