lufi/themes/default/templates/render.html.ep

30 lines
1.4 KiB
Plaintext

% # vim:set sw=4 ts=4 sts=4 ft=html.epl expandtab:
% if (!defined(stash('f')) && defined(stash('msg'))) {
<div class="alert alert-danger"><%= stash('msg') %></div>
% } else {
<h2><%= stash('f')->filename %></h2>
% if (defined(stash('msg'))) {
<div class="alert alert-danger"><%= stash('msg') %></div>
% } else {
<p id="please-wait"><%= l('Please wait while we are getting your file') %></p>
<p id="loading"></p>
<div class="progress" id="pbd">
<div id="pb" class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0;">
<span id="pbt" class="sr-only">0%</span>
</div>
</div>
%= javascript begin
var ws_url = '<%= url_for('download')->to_abs() %>';
var i18n = {
badkey: '<%= l('It seems that the key in your URL is incorrect. Please, verify your URL.') %>',
confirmExit: '<%= l('You have attempted to leave this page. The download will be canceled. Are you sure?') %>',
download: '<%= l('Download') %>',
loading: '<%= l('Asking for file part XX1 of %1', stash('f')->nbslices) %>',
nokey: '<%= l('You don\'t seem to have a key in your URL. You won\'t be able to decrypt the file. Download canceled.') %>',
}
% end
%= javascript '/js/sjcl.js'
%= javascript '/js/lufi-down.js'
% }
% }