/usr/share/sreview/templates/msg.html.ep is in sreview-web 0.3.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | %layout 'default';
%title "SReview: $title";
% if (my $cmsg = flash 'completion_message') {
<div class='alert alert-success alert-dismisable fade in'>
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<%= $cmsg =%>
</div>
% }
% if (my $emsg = flash 'error_message') {
<div class='alert alert-success alert-dismissable fade in'>
<a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a>
<%= $emsg =%>
</div>
% }
<h1><%= $title %></h1>
<p><%== $message %></p>
<p>Go to <%= link_to 'the SReview home page' => '/' %> or <%= link_to 'the video status overview page' => '/overview' %>.</p>
|