trytond-nereid_blog/view/post_form.xml

39 lines
1.3 KiB
XML

<?xml version="1.0"?>
<!-- This file is part nereid_blog of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form string="Post" col="4">
<label name="title"/>
<field name="title"/>
<label name="uri"/>
<field name="uri"/>
<label name="template"/>
<field name="template"/>
<label name="status"/>
<field name="status"/>
<notebook colspan="4">
<page string="Descriptions" id="descriptions">
<field name="description"/>
</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="Categories" id="categories">
<field name="categories"/>
</page>
<page string="Images" id="images">
<field name="images"/>
</page>
<page string="Details" id="details">
<label name="author"/>
<field name="author"/>
<label name="published_on"/>
<field name="published_on"/>
</page>
</notebook>
</form>