mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
17 lines
522 B
Text
17 lines
522 B
Text
<% provide :head_title, t('nav.label.dashboard') %>
|
|
|
|
<% if current_team %>
|
|
<div class="dashboard-view">
|
|
<div class="dashboard-background"></div>
|
|
<div class="dashboard-header">
|
|
<%= render partial: 'quick_start' %>
|
|
</div>
|
|
<div class="dashboard-container">
|
|
<% Extends::DEFAULT_DASHBOARD_CONFIGURATION.each do |widget| %>
|
|
<% if widget[:visible] %>
|
|
<%= render partial: widget[:partial], locals: {widget: widget} %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|