summaryrefslogtreecommitdiff
path: root/addons/website/static/src/xml/website.backend.xml
blob: 943a948ef87f07abe9811cbf0687a200ee4eac24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
    <div t-name="WidgetWebsiteButton" class="o_stat_info published">
        <span class="o_stat_text o_value"/>
        <span class="o_stat_text">On Website</span>
    </div>

    <t t-name="WidgetWebsiteButtonIcon">
        <button type="button" class="btn oe_stat_button">
            <i class="fa fa-fw o_button_icon fa-globe"/>
            <div class="o_stat_info">
                <span class="o_stat_text">Go to<br/>Website</span>
            </div>
        </button>
    </t>

    <t t-name="website.WebsiteDashboardMain">
        <div class="o_dashboards">
            <div class="container-fluid o_website_dashboard">
                <t t-call="website.dashboard_header"/>
                <t t-call="website.dashboard_content"/>
            </div>
        </div>
    </t>

    <t t-name="website.dashboard_header">
        <div class="row o_dashboard_common"/>
    </t>

    <t t-name="website.dashboard_content">
        <div class="o_website_dashboard_content">
            <t t-call="website.google_analytics_content"/>
        </div>
    </t>
    <t t-name="website.google_analytics_content">
        <div class="row o_dashboard_visits" t-if="widget.groups.website_designer">
            <div class="col-12 o_box">
                <h2>Visits</h2>
                <div t-if="widget.dashboards_data.visits &amp;&amp; widget.dashboards_data.visits.ga_client_id">
                    <div class="row js_analytics_components"/>
                    <a href="#" class="js_link_analytics_settings">Edit my Analytics Client ID</a>
                </div>
                <div t-if="!(widget.dashboards_data.visits &amp;&amp; widget.dashboards_data.visits.ga_client_id)" class="col-lg-12">
                    <div class="o_demo_background">
                        <div class="o_layer">
                        </div>
                        <div class="o_buttons text-center">
                            <h3>There is no data currently available.</h3>
                            <button class="btn btn-primary js_link_analytics_settings d-block mx-auto mb8">Connect Google Analytics</button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </t>

    <div t-name="website.unauthorized_analytics" class="col-12 js_unauthorized_message mb16">
        <span t-if="reason === 'not_connected'">You need to log in to your Google Account before: </span>
        <span t-if="reason === 'no_right'">You do not seem to have access to this Analytics Account.</span>
        <span t-if="reason === 'not_initialized'">Google Analytics initialization failed. Maybe this domain is not whitelisted in your Google Analytics project for this client ID.</span>
    </div>

    <div t-name="website.ga_dialog_content">
        Your Tracking ID: <input type="text" name="ga_analytics_key" placeholder="UA-XXXXXXXX-Y" t-att-value="ga_analytics_key" style="width: 100%"></input>
        <a href="https://www.odoo.com/documentation/14.0/applications/websites/website/optimize/google_analytics.html" target="_blank">
            <i class="fa fa-arrow-right"/>
            How to get my Tracking ID
        </a>
        <br/><br/>
        Your Client ID: <input type="text" name="ga_client_id" t-att-value="ga_key" style="width: 100%"></input>
        <a href="https://www.odoo.com/documentation/14.0/applications/websites/website/optimize/google_analytics_dashboard.html" target="_blank">
            <i class="fa fa-arrow-right"/>
            How to get my Client ID
        </a>
    </div>

    <t t-name="website.DateRangeButtons">
        <!-- TODO: Hide in mobile as it is going to push in control panel and it breaks UI, maybe we will improve it in future -->
        <div class="btn-group o_date_range_buttons d-none d-md-inline-flex float-right">
            <button class="btn btn-secondary js_date_range active" data-date="week">Last Week</button>
            <button class="btn btn-secondary js_date_range" data-date="month">Last Month</button>
            <button class="btn btn-secondary js_date_range" data-date="year">Last Year</button>
        </div>
        <div class="btn-group d-none d-md-inline-block float-right" style="margin-right: 20px;">
            <t t-foreach="widget.websites" t-as="website">
                <button t-attf-class="btn btn-secondary js_website #{website.selected ? 'active' : ''}"
                        t-att-data-website-id="website.id">
                    <t t-esc="website.name"/>
                </button>
            </t>
        </div>
    </t>

    <t t-name="website.GoToButtons">
        <a role="button" href="/" class="btn btn-primary" title="Go to Website">
            Go to Website
        </a>
    </t>

</templates>