1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-28 01:29:43 +02:00
documize/gui/app/templates/components/layout/bottom-bar.hbs

24 lines
672 B
Handlebars
Raw Normal View History

2018-05-29 18:26:04 +01:00
<div class="row no-gutters d-flex align-items-center">
<div class="col d-flex justify-content-start">
<div class="footer">
<a href="https://documize.com?ref=af">Documize {{appMeta.version}}</a>
</div>
{{yield}}
</div>
<div class="col d-flex justify-content-end">
2018-05-29 18:26:04 +01:00
<div class="footer">
{{#if showWait}}
2018-05-30 11:27:29 +01:00
<div class="progress progress-wait animated fadeIn">
2018-12-08 20:54:19 +00:00
<img src="/assets/img/busy-gray.gif">
2018-05-29 18:26:04 +01:00
</div>
{{/if}}
{{#if showDone}}
<div class="progress progress-done animated zoomIn">&check;</div>
{{/if}}
{{#if showMessage}}
<div class="progress-notification animated zoomIn">{{message}}</div>
{{/if}}
2018-05-22 17:00:42 +01:00
</div>
</div>
</div>