<?xml version="1.0" encoding="utf-8"?>
<template>
    <div t-name='res_config_dev_tool'>
        <div id="developer_tool">
            <t t-set="title">Developer Tools</t>
            <SettingsBlock title="title">
                <Setting addLabel="false">
                        <a t-if="!isDebug" class="d-block" href="?debug=1">Activate the developer mode</a>
                        <a t-if="!isAssets" class="d-block" href="?debug=assets">Activate the developer mode (with assets)</a>
                        <a t-if="!isTests" class="d-block" href="?debug=assets,tests">Activate the developer mode (with tests assets)</a>
                        <a t-if="isDebug" class="d-block" href="?debug=">Deactivate the developer mode</a>
                        <a t-if="isDebug and !isDemoDataActive" t-on-click.prevent="onClickForceDemo" class="o_web_settings_force_demo" href="#">Load demo data</a>
                </Setting>
            </SettingsBlock>
        </div>
    </div>
</template>
