oscar template: update messages

This commit is contained in:
Thomas Pointhuber 2014-09-27 11:51:31 +02:00
parent a538bed745
commit 9158571059
6 changed files with 19 additions and 6 deletions

View File

@ -0,0 +1,8 @@
<div class="alert alert-info fade in" role="alert">
<button class="close" data-dismiss="alert" type="button">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<strong class="lead">{{ icon('info-sign') }} {{ _('Heads up!') }}</strong>
{{ _('It look like you are using searx first time.') }}
</div>

View File

@ -1,4 +1,4 @@
<div class="alert alert-warning" role="alert">
<strong>{{ _('Warning!') }}</strong>
<strong class="lead">{{ _('Warning!') }}</strong>
{{ _('Please enable JavaScript to use full functionality of this site.') }}
</div>

View File

@ -0,0 +1,5 @@
{% from 'oscar/macros.html' import icon %}
<div class="alert alert-info fade in" role="alert">
<strong class="lead">{{ icon('info-sign') }} {{ _('Heads up!') }}</strong>
{{ _('There is currently no data available. ') }}
</div>

View File

@ -1,8 +1,9 @@
{% from 'oscar/macros.html' import icon %}
<div class="alert alert-success fade in" role="alert">
<button class="close" data-dismiss="alert" type="button">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<strong>{{ _('Well done!') }}</strong>
<strong class="lead">{{ icon('ok-sign') }} {{ _('Well done!') }}</strong>
{{ _('Settings saved successfully.') }}
</div>

View File

@ -1,8 +1,9 @@
{% from 'oscar/macros.html' import icon %}
<div class="alert alert-danger fade in" role="alert">
<button class="close" data-dismiss="alert" type="button">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<strong>{{ _('Oh snap!') }}</strong>
<strong class="lead">{{ icon('exclamation-sign') }} {{ _('Oh snap!') }}</strong>
{{ _('Something went wrong.') }}
</div>

View File

@ -22,9 +22,7 @@
{% endfor %}
{% if not stat_category %}
<div class="col-sm-12 col-md-12">
<div class="alert alert-info" role="alert">
{{ _('There is currently no data available.') }}
</div>
{% include 'oscar/messages/no_data_available.html' %}
</div>
{% endif %}
</div>