mirror of
https://gitlab.com/flectra-community/devops/odoo-2-flectra-converter.git
synced 2024-11-22 13:22:03 +00:00
16 lines
368 B
Markdown
16 lines
368 B
Markdown
# {{ project_title }}
|
|
|
|
{{ project_intro }}
|
|
|
|
{% if modules %}
|
|
|
|
Available addons
|
|
----------------
|
|
|
|
addon | version | summary
|
|
--- | --- | ---
|
|
{% for key, mod in modules.items() -%}
|
|
[{{ key }}]({{ key }}/) | {{ mod['version'] }}| {{ ('summary' in mod and mod['summary'] or 'name' in mod and mod['name'] or '').replace('\n','').replace('\r','') }}
|
|
{% endfor %}
|
|
|
|
{% endif %} |