blob: 4e48c34c643a41803b3b5ade472933051da5d585 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% load i18n sanitize chimere_tags bootstrap %}{% if news_lst or welcome_message %}
{% bootstrap_modal "welcome" title welcome_message|safe %}
<script type='text/javascript'>
<!--
$(function(){
{% if display %}$('#welcome').modal('show');{%endif%}
$('.get_more_information').click(function(){
$('#welcome').modal('hide');
$('#news').modal('show');
return false;
});
});
// -->
</script>
{% endif %}
|