mirror of https://github.com/searxng/searxng.git
oscar template: update messages
This commit is contained in:
parent
a538bed745
commit
9158571059
|
@ -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>
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue