##// END OF EJS Templates
oss-licenses: Use only 'rhodecode' as pkg_resource manager string....
oss-licenses: Use only 'rhodecode' as pkg_resource manager string. This way it will match the pyramid static asset 'rhodecode:config/licenses.json'

File last commit:

r1:854a839a default
r205:2b64428b default
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>