##// END OF EJS Templates
old style: don't let changelog buttons at the top influence changelog/graph floating
old style: don't let changelog buttons at the top influence changelog/graph floating

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4149:30a683d0 rhodecode-2.2.5-gpl
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>