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

15 lines
648 B
Plaintext

<div class="card shadow-sm">
<%= card_header text: t(".heading"), subtext: t(".subheading"), close_action_path: [@project, :videos] %>
<div class="card-body">
<p><%= t(".instructions") %></p>
<div class="form-row">
<div class="col-sm-6">
<%= link_to t(".avid"), new_project_video_path(@project, video_editing_system: "avid"), class: "btn btn-light btn-block border p-4" %>
</div>
<div class="col-sm-6 mt-2 mt-sm-0">
<%= link_to t(".adobe"), new_project_video_path(@project, video_editing_system: "adobe_premiere"), class: "btn btn-light btn-block border p-4" %>
</div>
</div>
</div>
</div>