You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
753 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Extends the template to display a link for users to log out from other devices positioned after an alert message in the 'web.login' template. -->
<template id="login_clear_session" name="Clear User Sessions" inherit_id="web.login">
<xpath expr="//p[hasclass('alert-danger')]" position="after">
<t t-if="logout_all">
<div class="justify-content-between mt-2 d-flex small">
<a style="margin-left: auto; margin-right: auto;" t-att-href="'/clear_all_sessions?f_uid='+str(failed_uid)">
Logout from other devices.
</a>
</div>
</t>
</xpath>
</template>
</odoo>