Files
old-holivud2/app/views/projects/_empty_projects.html.erb
2020-05-31 22:38:19 +02:00

13 lines
420 B
Plaintext

<section class="col-md-4 offset-md-4 text-center pt-4">
<% if policy(Project).new? %>
<h1><%= t(".heading") %></h1>
<p class="pt-3"><%= t(".message") %></p>
<p class="pt-5">
<%= link_to fa_icon("plus", text: t(".action")), [:new, :project], class: "btn btn-success" %>
</p>
<% else %>
<h1><%= t(".heading") %></h1>
<p class="pt-3"><%= t(".member_message") %></p>
<% end %>
</section>