mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
12 lines
625 B
Text
12 lines
625 B
Text
<% unless current_user.is_guest_of_team?(current_team) %>
|
|
<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>
|
|
<%= link_to protocols_path, {class: "new-protocol btn btn-secondary"} do %>
|
|
<i class="fas fa-edit"></i><%= t("dashboard.quick_start.new_protocol") %>
|
|
<% end %>
|
|
<%= 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 %>
|
|
</div>
|
|
<%= render "create_task_modal" %>
|
|
<% end %>
|