Mercurial > libervia-templates
view sat_templates/templates/bulma/dialogs/retry-notification.html @ 374:5646df8bd391
bulma (call): calling mode improvments:
- instead of a "switch" button, there are now 2 button with only an icon, one for video
call and the other for audio call, they appear on the same row as the search bar
- search item can now be extended using "call" blocks, and options are used
- call search items don't show group, and now display an "extra" menu (3 dots menu) with a
dropdown to select audio or video call.
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 15 Aug 2023 17:12:18 +0200 |
parents | e3e11ced9f8f |
children |
line wrap: on
line source
<div class="main_notification columns is-centered"> <div class="column is-narrow has-items-centered"> {% set level_map={ 'success': 'is-success', 'info': 'is-info', 'warning': 'is-warning', 'error': 'is-danger' } %} <div class="notification {{level_map[level]}} py-4"> {{message}} <button class="button is-rounded is-small click_to_retry ml-5 is-valign-middle">{% trans %}retry{% endtrans %} (<span class="retry_counter">X</span>s)</button> </div> </div> </div>