trytond-galatea_blog-old/view/post_form.xml
2017-07-06 17:21:11 +02:00

60 lines
2.3 KiB
XML

<?xml version="1.0"?>
<!-- This file is part galatea_blog of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form string="Post">
<label name="name"/>
<field name="name"/>
<label name="slug"/>
<field name="slug"/>
<label name="active"/>
<field name="active"/>
<label name="uri"/>
<field name="uri" widget="url"/>
<notebook colspan="4">
<page string="Descriptions" id="descriptions">
<field name="description" colspan="4"/>
<separator name="long_description" colspan="4"/>
<field name="long_description" colspan="4"/>
</page>
<page string="SEO" id="seo">
<label name="metadescription"/>
<field name="metadescription"/><newline/>
<label name="metakeywords"/>
<field name="metakeywords"/><newline/>
<label name="metatitle"/>
<field name="metatitle"/><newline/>
</page>
<page string="Info" id="info">
<label name="post_create_date"/>
<field name="post_create_date" widget="date"/>
<field name="post_create_date" widget="time"/>
<label name="post_write_date"/>
<field name="post_write_date" widget="date"/>
<field name="post_write_date" widget="time"/>
<label name="post_published_date"/>
<field name="post_published_date" widget="date"/>
<field name="post_published_date" widget="time"/>
</page>
<page string="Extra" id="extra">
<label name="user"/>
<field name="user"/>
<label name="visibility"/>
<field name="visibility"/>
<label name="galatea_website"/>
<field name="galatea_website"/>
<label name="template"/>
<field name="template"/>
<label name="gallery"/>
<field name="gallery"/>
<label name="comment"/>
<field name="comment"/>
</page>
<page string="Attachments" id="attachments">
<label name="thumb"/>
<field name="thumb"/>
<field name="thumb_filename" invisible="1"/>
<field name="attachments" colspan="6"/>
</page>
</notebook>
</form>