forked from 3dfxmadscientist/odoo-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_gitlab.xml
25 lines (25 loc) · 996 Bytes
/
project_gitlab.xml
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
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="gitlab_projects">
<field name="name">project.project.form.gitlab</field>
<field name="model">project.project</field>
<field name="inherit_id" ref="project.edit_project" />
<field name="arch" type="xml">
<notebook position="inside">
<page string="Gitlab Integration">
<label string="Repo Integration"/>
<field name="prj_group"/>
<button name="_create_repo" string="Crea repository"/>
<newline/>
<!-- fixme: strings from orm -->
<label string="Configuration for your issue Integration"/>
<field name="url_base"/>
<field name="private_token"/>
<field name="prj_id"/>
</page>
</notebook>
</field>
</record>
</data>
</openerp>