blob: 3b0790a464d25b22d5aae3d751e09227e04efdf0 [file] [log] [blame]
Sapan Bhatiad022aeb2017-06-07 15:49:55 +02001items:
2{%- for m in proto.messages | sort(attribute='name') %}
Matteo Scandolo53418592017-07-26 15:51:29 -07003{%- if m.name != 'XOSBase' and xproto_unquote(xproto_first_non_empty([m.options.gui_hidden, 'False'])) != 'True' %}
Sapan Bhatiaaef145d2017-07-10 19:52:09 -04004- app: {{ xproto_unquote(xproto_first_non_empty([m.options.name, m.options.app_label, options.name, context.app_label])) }}
Matteo Scandoloe425f9d2017-08-15 15:56:19 -07005 {%- if m.options.description %}
6 description: "{{ xproto_unquote(m.options.description) }}"
7 {%- endif %}
8 {%- if m.options.verbose_name %}
9 verbose_name: "{{ xproto_unquote(m.options.verbose_name) }}"
10 {%- endif %}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +020011 fields:
12 {%- set id_field = {'type':'int32', 'name':'id', 'options':{}} %}
13 {% for f in (xproto_base_fields(m, proto.message_table) + m.fields + [id_field]) | sort(attribute='name') -%}
Matteo Scandolo53418592017-07-26 15:51:29 -070014 {% if xproto_unquote(xproto_first_non_empty([f.options.gui_hidden, 'False'])) != 'True' and (not f.link or f.options.link_type != 'manytomany') -%}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +020015 - hint: {% if f.options.help_text %}{{ xproto_unquote(f.options.help_text) }}{% else %}''{% endif %}
16 {% if not f.link -%}
17 name: {{ f.name }}
18 {%- else -%}
19 name: {{ f.name }}_id
20 relation: {model: {{ f.options.model }}, type: {{ f.options.link_type }}}
21 {% endif %}
Matteo Scandolo292cc2a2017-07-31 19:02:12 -070022 {%- if f.options.default %}
23 default: "{{ xproto_unquote(xproto_default_to_gui(f.options.default)) }}"
24 {%- endif %}
25 {%- if f.options.choices %}
26 options:
27 {% for o in xproto_options_choices_to_dict(xproto_unquote(f.options.choices)) %}
28 - {{ o }}
29 {% endfor %}
30 {%- endif %}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +020031 type: {{ xproto_type_to_ui_type(f) }}
32 {% set validators = xproto_validators(f) -%}
33 {% if validators -%}
34 validators:
35 {% for v in validators | sort(attribute='name',reverse=True) -%}
36 - {{ v | yaml }}
37 {% endfor %}
38 {% else -%}
39 validators: []
40 {% endif %}
41 {% endif -%}
42 {% endfor %}
Matteo Scandolo292cc2a2017-07-31 19:02:12 -070043 name: {{ m.name }}
Matteo Scandolo1f826a42017-08-02 12:02:02 -070044 {%- set goodlinks = xproto_links_to_modeldef_relations( xproto_base_links(m, proto.message_table) + m.links ) + xproto_links_to_modeldef_relations( xproto_base_rlinks(m, proto.message_table) + m.rlinks )%}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +020045 {% if goodlinks %}
46 relations:
47 {{ goodlinks | join('\n') | indent(width=2)}}
48 {%- else %}
49 relations: []
50 {%- endif %}
51{%- endif %}
52{% endfor -%}