You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.4 KiB
33 lines
1.4 KiB
7 years ago
|
% layout 'default';
|
||
|
% title 'Filebin -- View';
|
||
|
% my $file = stash('file') || {};
|
||
|
<h1><%= l('View file') %></h1>
|
||
|
<div>
|
||
|
<div>
|
||
|
<%= link_to l('Upload') => "/filebin", class => 'filebin upload' %>
|
||
|
<%= link_to l('Download') => $file->{path}, class => 'filebin download', download => $file->{fname} %>
|
||
|
% if (config->{filebin}->{show_latest}) {
|
||
|
<%= link_to l('Latest files') => "/filebin/latest", class => 'filebin latest' %>
|
||
|
% }
|
||
|
</div>
|
||
|
<hr/>
|
||
|
<div class="filebin file">
|
||
|
% if ($file->{ftype} eq 'i') {
|
||
|
<%= image $file->{path} %>
|
||
|
% } elsif ($file->{ftype} eq 'a') {
|
||
|
<%= tag audio => (src => $file->{path}, controls => 'controls', loop => 0, autoplay => 0) => l('HTML5-aware browser required') %>
|
||
|
% } elsif ($file->{ftype} eq 'v') {
|
||
|
<%= tag video => (src => $file->{path}, controls => 'controls', loop => 0, autoplay => 0) => l('HTML5-aware browser required') %>
|
||
|
% }
|
||
|
</div>
|
||
|
<hr/>
|
||
|
<table>
|
||
|
<tr><td><%= l('Name') %></td><td>:</td><td><%= $file->{fname} %></td></tr>
|
||
|
<tr><td><%= l('Size') %></td><td>:</td><td><%= sprintf("%.1f kb", $file->{fsize} / 1024) %></td></tr>
|
||
|
<tr><td><%= l('Mime') %></td><td>:</td><td><%= $file->{fmime} %></td></tr>
|
||
|
% if ($file->{ftype} eq 'i' or $file->{ftype} eq 'v') {
|
||
|
<tr><td><%= l('Image size') %></td><td>:</td><td><%= sprintf("%dx%d", $file->{res_w}, $file->{res_h}) %></td></tr>
|
||
|
% }
|
||
|
</table>
|
||
|
</div>
|