2016-02-12 23:52:43 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2016-10-06 22:47:36 +08:00
|
|
|
|
<meta data-hook="head-js">
|
2016-02-12 23:52:43 +08:00
|
|
|
|
<title><%=t "head.title", title: (yield :head_title) %></title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
|
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
|
|
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
|
|
|
|
|
|
|
|
|
<%= favicon_link_tag "favicon.ico" %>
|
|
|
|
|
<%= favicon_link_tag "favicon-16.png", type: "image/png", size: "16x16" %>
|
|
|
|
|
<%= favicon_link_tag "favicon-32.png", type: "image/png", size: "32x32" %>
|
|
|
|
|
<%= favicon_link_tag "favicon-48.png", type: "image/png", size: "48x48" %>
|
|
|
|
|
|
|
|
|
|
<%= csrf_meta_tags %>
|
|
|
|
|
</head>
|
2017-01-06 19:48:37 +08:00
|
|
|
|
<body
|
|
|
|
|
class="<%= yield :body_class %>"
|
2017-01-25 19:01:23 +08:00
|
|
|
|
<% if user_signed_in? && current_team.present? %>
|
|
|
|
|
data-atwho-users-url="<%= atwho_users_team_path(current_team) %>"
|
|
|
|
|
data-atwho-task-url="<%= atwho_my_modules_team_path(current_team) %>"
|
|
|
|
|
data-atwho-project-url="<%= atwho_projects_team_path(current_team) %>"
|
|
|
|
|
data-atwho-experiment-url="<%= atwho_experiments_team_path(current_team) %>"
|
|
|
|
|
data-atwho-sample-url="<%= atwho_samples_team_path(current_team) %>"
|
|
|
|
|
data-atwho-menu-items="<%= atwho_menu_items_team_path(current_team) %>"
|
2017-01-06 19:48:37 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
2016-10-06 22:47:36 +08:00
|
|
|
|
<span style="display: none;" data-hook="body-js"></span>
|
2016-10-28 16:36:15 +08:00
|
|
|
|
<span style="display: none;" data-hook="application-body-html"></span>
|
2016-10-06 22:47:36 +08:00
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
|
<!-- Activity modal -->
|
|
|
|
|
<div class="modal" id="activity-modal" tabindex="-1" role="dialog" aria-labelledby="activity-modal-label">
|
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
|
|
<h4 class="modal-title" id="activity-modal-label"><%= t'activities.modal.modal_title' %></h4>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body"></div>
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal"><%=t "general.close" %></button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2017-07-10 21:27:50 +08:00
|
|
|
|
<!-- About us modal -->
|
|
|
|
|
<%= render "shared/about_modal" %>
|
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
|
<%= render "shared/navigation" %>
|
|
|
|
|
|
|
|
|
|
<div id="notifications">
|
|
|
|
|
<% if flash[:success] %>
|
|
|
|
|
<div class="alert alert-success alert-dismissable alert-floating">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
|
|
<span class="glyphicon glyphicon-ok-sign"></span>
|
2017-01-04 00:27:22 +08:00
|
|
|
|
<span><%= sanitize_input(flash[:success]) %></span>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% if notice %>
|
|
|
|
|
<div class="alert alert-info alert-dismissable alert-floating">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
|
|
<span class="glyphicon glyphicon-info-sign"></span>
|
|
|
|
|
<span><%= notice %></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
2016-11-23 21:55:41 +08:00
|
|
|
|
<% if alert and !alert.empty? or flash[:error]%>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
<div class="alert alert-danger alert-dismissable alert-floating">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
|
|
<span class="glyphicon glyphicon-exclamation-sign"></span>
|
2017-01-04 00:27:22 +08:00
|
|
|
|
<span><%= alert || sanitize_input(flash[:error]) %></span>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="content-wrapper" class="<%= "alert-shown" if flash[:success] || flash[:error] || notice || alert %>">
|
|
|
|
|
<%= yield :content %>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|