##// END OF EJS Templates
First step in two-part process to rename directories to kallithea....
First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4186:7e5f8c12 kallithea-2.2.5-r...
Show More
flash_msg.html
16 lines | 487 B | text/html | HtmlLexer
<div class="flash_msg">
<% messages = h.flash.pop_messages() %>
% if messages:
% for message in messages:
<div class="alert alert-dismissable alert-${message.category}">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
${message}
</div>
% endfor
% endif
<script>
if (typeof jQuery != 'undefined') {
$(".alert").alert();
}
</script>
</div>