[IMP] website: refact. python for website publish button
[odoo/odoo.git] / addons / website / views / views.xml
index 9534100..e6414f2 100644 (file)
         </template>
 
         <template id="publish">
-            <a href="#" t-att-data-id="object.id" class="pull-right" t-if="editable">
+            <a href="#" t-att-data-id="object.id" t-att-data-object="object._name" class="pull-right" t-if="editable" t-ignore="true">
                 <span t-att-class="'label label-success js_unpublish %%s' %% (not object.website_published and 'hidden' or '')">Unpublish</span>
                 <span t-att-class="'label label-important js_publish %%s' %% (object.website_published and 'hidden' or '')">Publish</span>
             </a>