gitprep / templates / include / errors.html.ep /
Newer Older
11 lines | 0.274kb
simplify rename project
Yuki Kimoto authored on 2013-05-22
1
<%
2
  my $errors = stash('errors');
3
%>
4
% if ($errors) {
5
  <div class="alert alert-error">
6
    <button type="button" class="close" data-dismiss="alert">&times;</button>
7
    % for my $error (@$errors) {
add ssh key add feature
gitprep authored on 2014-05-17
8
      <p style="margin:0;padding:0"><%= $error %></p>
simplify rename project
Yuki Kimoto authored on 2013-05-22
9
    % }
10
  </div>
11
% }