2016-06-17 08:31:36 +00:00
|
|
|
<!-- refresh modal -->
|
|
|
|
<div class="modal fade" id="refreshModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog modal-sm">
|
|
|
|
<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>
|
2016-08-19 03:49:24 +00:00
|
|
|
<h4 class="modal-title" id="myModalLabel"><%= __('This page need refresh') %></h4>
|
2016-06-17 08:31:36 +00:00
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="incompatible-version">
|
2016-08-19 03:49:24 +00:00
|
|
|
<h5><%= __('You have an incompatible client version.') %></h5>
|
|
|
|
<strong><%= __('Refresh to update.') %></strong>
|
2016-06-17 08:31:36 +00:00
|
|
|
</div>
|
|
|
|
<div class="new-version" style="display:none;">
|
2016-08-19 03:49:24 +00:00
|
|
|
<h5><%= __('New version available!') %></h5>
|
2018-09-13 19:26:39 +00:00
|
|
|
<a href="<%- serverURL %>/s/release-notes" target="_blank" rel="noopener"><%= __('See releases notes here') %></a>
|
2016-06-17 08:31:36 +00:00
|
|
|
<br>
|
2016-08-19 03:49:24 +00:00
|
|
|
<strong><%= __('Refresh to enjoy new features.') %></strong>
|
2016-06-17 08:31:36 +00:00
|
|
|
</div>
|
|
|
|
<div class="user-state-changed" style="display:none;">
|
2016-08-19 03:49:24 +00:00
|
|
|
<h5><%= __('Your user state has changed.') %></h5>
|
|
|
|
<strong><%= __('Refresh to load new user state.') %></strong>
|
2016-06-17 08:31:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2016-08-19 03:49:24 +00:00
|
|
|
<button type="button" class="btn btn-primary" id="refreshModalRefresh"><%= __('Refresh') %></button>
|
2016-06-17 08:31:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-09-13 19:26:39 +00:00
|
|
|
</div>
|