Files
jikimo_sf/spiffy_theme_backend/views/pwa_offline.xml
2023-07-14 09:21:21 +08:00

24 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<template id="pwa_offline_page" name="pwa offline page">
<t t-call="web.frontend_layout">
<t t-set="html_data" t-value="{'style': 'height: 100%;'}"/>
<t t-set="body_classname" t-value="'bg-100'"/>
<t t-set="no_header" t-value="True"/>
<t t-set="no_footer" t-value="True"/>
<div class="container">
<div class="row mb64 mt64">
<div class="col-md-12 text-center">
<img class="img img-fluid" style="width: 20%;" src="/spiffy_theme_backend/static/src/image/loader_2.gif"/>
</div>
<div class="col-md-12 text-center mt32 mb16">
<h1 class="text-primary">You're Offline</h1>
</div>
<div class="col-md-12 text-center">
<a href="/web" class="btn btn-primary">Refresh</a>
</div>
</div>
</div>
</t>
</template>
</odoo>