blob: ec8df1cc63c3b98e276b12e39594666bcb48f0a6 [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])) }}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +02005 fields:
6 {%- set id_field = {'type':'int32', 'name':'id', 'options':{}} %}
7 {% for f in (xproto_base_fields(m, proto.message_table) + m.fields + [id_field]) | sort(attribute='name') -%}
Matteo Scandolo53418592017-07-26 15:51:29 -07008 {% 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 +02009 - hint: {% if f.options.help_text %}{{ xproto_unquote(f.options.help_text) }}{% else %}''{% endif %}
10 {% if not f.link -%}
11 name: {{ f.name }}
12 {%- else -%}
13 name: {{ f.name }}_id
14 relation: {model: {{ f.options.model }}, type: {{ f.options.link_type }}}
15 {% endif %}
Matteo Scandolo292cc2a2017-07-31 19:02:12 -070016 {%- if f.options.default %}
17 default: "{{ xproto_unquote(xproto_default_to_gui(f.options.default)) }}"
18 {%- endif %}
19 {%- if f.options.choices %}
20 options:
21 {% for o in xproto_options_choices_to_dict(xproto_unquote(f.options.choices)) %}
22 - {{ o }}
23 {% endfor %}
24 {%- endif %}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +020025 type: {{ xproto_type_to_ui_type(f) }}
26 {% set validators = xproto_validators(f) -%}
27 {% if validators -%}
28 validators:
29 {% for v in validators | sort(attribute='name',reverse=True) -%}
30 - {{ v | yaml }}
31 {% endfor %}
32 {% else -%}
33 validators: []
34 {% endif %}
35 {% endif -%}
36 {% endfor %}
Matteo Scandolo292cc2a2017-07-31 19:02:12 -070037 name: {{ m.name }}
Matteo Scandolo1f826a42017-08-02 12:02:02 -070038 {%- 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 +020039 {% if goodlinks %}
40 relations:
41 {{ goodlinks | join('\n') | indent(width=2)}}
42 {%- else %}
43 relations: []
44 {%- endif %}
45{%- endif %}
46{% endfor -%}