Remove conditional to render tabs on budgets/stats#show

'Results' and 'Execution' tabs are now shown to the user regardless
of the budget's current status
This commit is contained in:
Angel Perez
2018-07-02 17:12:43 -04:00
committed by Javi Martín
parent c2b9042ad7
commit 3bbdffceaf

View File

@@ -25,20 +25,16 @@
<div class="row margin-top">
<div class="small-12 column">
<ul class="tabs">
<% if @budget.finished? %>
<li class="tabs-title">
<span class="show-for-sr"><%= t("shared.you_are_in") %></span>
<%= link_to t("budgets.results.link"), budget_results_path(@budget) %>
</li>
<% end %>
<li class="tabs-title">
<span class="show-for-sr"><%= t("shared.you_are_in") %></span>
<%= link_to t("budgets.results.link"), budget_results_path(@budget) %>
</li>
<li class="tabs-title is-active">
<%= link_to t("budgets.stats.link"), budget_stats_path(@budget), class: "is-active" %>
</li>
<% if @budget.finished? %>
<li class="tabs-title">
<%= link_to t("budgets.executions.link"), budget_executions_path(@budget) %>
</li>
<% end %>
<li class="tabs-title">
<%= link_to t("budgets.executions.link"), budget_executions_path(@budget) %>
</li>
</ul>
</div>
</div>