2022-05-19 19:46:03 +08:00
|
|
|
<div class="quick-start-buttons">
|
|
|
|
<div class="new-task btn btn-secondary"><i class="fas fa-plus"></i><%= t("dashboard.quick_start.new_task") %></div>
|
2022-10-18 16:43:51 +08:00
|
|
|
<% if can_create_protocols_in_repository?(current_team) %>
|
2022-10-21 17:32:36 +08:00
|
|
|
<%= button_to protocols_path(type: :public), class: 'btn btn-secondary' do %>
|
2022-10-18 16:43:51 +08:00
|
|
|
<i class="fas fa-edit"></i><%= t("dashboard.quick_start.new_protocol") %>
|
|
|
|
<% end %>
|
2022-05-19 19:46:03 +08:00
|
|
|
<% end %>
|
2022-10-18 16:43:51 +08:00
|
|
|
<% if can_create_reports?(current_team) %>
|
|
|
|
<%= link_to new_report_path, {class: "new-report btn btn-secondary"} do %>
|
|
|
|
<i class="fas fa-clipboard-check"></i><%= t("dashboard.quick_start.new_report") %>
|
|
|
|
<% end %>
|
2022-05-19 19:46:03 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<%= render "create_task_modal" %>
|