2016-02-12 23:52:43 +08:00
|
|
|
<% provide(:head_title, t("users.settings.preferences.head_title")) %>
|
|
|
|
|
|
|
|
<%= render partial: "users/settings/navigation.html.erb" %>
|
|
|
|
<div class="tab-content">
|
|
|
|
<div class="tab-pane tab-pane-settings active" role="tabpanel">
|
|
|
|
|
|
|
|
<%= form_for(@user, url: update_preferences_path(format: :json), remote: true, html: { method: :put, "data-for" => "time_zone" }) do |f| %>
|
|
|
|
<div data-part="view">
|
|
|
|
<div class="form-group">
|
|
|
|
<%= f.label t("users.settings.preferences.edit.time_zone_label") %>
|
|
|
|
<div class="input-group" style="max-width: 500px;">
|
|
|
|
<input class="form-control" disabled="disabled" autocomplete="off" type="text" value="<%= @user.time_zone %>" name="fake_user[time_zone]" id="fake_user_time_zone">
|
|
|
|
<span class="input-group-btn">
|
|
|
|
<a href="#" class="btn btn-default" data-action="edit"><%=t "general.edit" %></a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<small><%= t("users.settings.preferences.edit.time_zone_sublabel") %></small>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div data-part="edit" style="display: none;">
|
|
|
|
<div class="well">
|
2016-07-21 19:11:15 +08:00
|
|
|
<h4><%=t "users.settings.preferences.edit.time_zone_title" %></h4>
|
2016-02-12 23:52:43 +08:00
|
|
|
<div class="form-group" style="max-width: 500px;">
|
|
|
|
<%= f.select :time_zone, ActiveSupport::TimeZone.all.collect {|tz| [tz.formatted_offset + " " + tz.name, tz.name] }, {}, {class: "form-control selectpicker", "data-role" => "clear"} %>
|
|
|
|
<small><%= t("users.settings.preferences.edit.time_zone_sublabel") %></small>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<a href="#" class="btn btn-default" data-action="cancel"><%=t "general.cancel" %></a>
|
|
|
|
<%= f.submit t("general.update"), class: "btn btn-primary" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if Rails.configuration.x.enable_tutorial %>
|
2016-10-06 19:22:44 +08:00
|
|
|
<hr>
|
|
|
|
<strong><%= t('tutorial.title') %></strong> <br>
|
2016-07-21 19:11:15 +08:00
|
|
|
<%= link_to t('users.settings.preferences.tutorial.repeat_tutorial'), tutorial_path(format: :json), remote: true, class: "btn btn-primary", id: "reset-tutorial-btn" %>
|
|
|
|
<% end %>
|
2016-10-06 19:22:44 +08:00
|
|
|
<hr>
|
|
|
|
<div class="notification-settings-container">
|
|
|
|
<strong><%= t('notifications.title') %></strong>
|
2016-10-04 21:52:48 +08:00
|
|
|
<%= form_for(@user,
|
|
|
|
url: notifications_settings_path(format: :json),
|
|
|
|
html: { method: :post, id: 'notifications-settings-panel' },
|
|
|
|
remote: true) do |f| %>
|
|
|
|
<div class="row">
|
2016-10-05 20:33:22 +08:00
|
|
|
<div class="col-md-4 col-sm-3 hidden-sm hidden-xs">
|
2016-10-04 21:52:48 +08:00
|
|
|
<div class="notification-settings-labels">
|
2016-10-05 20:33:22 +08:00
|
|
|
<%= image_tag 'icon_small/missing.png', class: 'img-circle ' %>
|
2016-10-04 21:52:48 +08:00
|
|
|
<%= f.label t('notifications.form.recent_notification') %> <br>
|
2016-10-05 20:33:22 +08:00
|
|
|
<span class="assignment hidden-sm"><%= fa_icon 'newspaper-o' %></span>
|
2016-10-04 21:52:48 +08:00
|
|
|
<%= f.label t('notifications.form.assignments') %>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-10-05 20:33:22 +08:00
|
|
|
<div class="col-md-3 col-sm-3 col-text-center">
|
2016-10-06 19:22:44 +08:00
|
|
|
<%= f.label t('notifications.form.recent_notification'), class: 'visible-sm visible-xs'%>
|
|
|
|
<h5 class="hidden-sm hidden-xs"><%= t('notifications.title') %></h5><br>
|
|
|
|
<%= check_box_tag :recent_notification, @user.recent_notification %> <br>
|
|
|
|
<%= f.label t('notifications.form.assignments'), class: 'visible-sm visible-xs' %>
|
|
|
|
<%= check_box_tag :assignments_notification, @user.assignments_notification %>
|
2016-10-04 21:52:48 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2016-02-12 23:52:43 +08:00
|
|
|
</div>
|
|
|
|
<div class="tab-pane tab-pane-settings" role="tabpanel"></div>
|
|
|
|
</div>
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
<!-- Repeat tutorial modal -->
|
|
|
|
<div class="modal" id="repeat-tutorial-modal" tabindex="-1" role="dialog" aria-labelledby="repeat-tutorial-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" ><%= t("users.settings.preferences.tutorial.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.cancel")%></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
<%= javascript_include_tag "users/settings/preferences" %>
|