22 lines
686 B
Django/Jinja
22 lines
686 B
Django/Jinja
{# Include rules-determined snippets #}
|
|
{% if software_full %}
|
|
{% include 'snippets/pm_android_tools.j2' %}
|
|
{% include 'snippets/pm_multimedia_editors.j2' %}
|
|
{% include 'snippets/pm_download.j2' %}
|
|
{% include 'snippets/pm_wine.j2' %}
|
|
{% include 'snippets/pm_document.j2' %}
|
|
{% endif %}
|
|
{# Inclde dev snippets #}
|
|
{% if dev_stuffs %}
|
|
{% include 'snippets/pm_dev_common.j2' %}
|
|
{% for dev_stuff in dev_stuffs %}
|
|
{% include 'snippets/pm_dev_' + dev_stuff + '.j2' %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{# Include custom snippets #}
|
|
{% for software_snippet in software_snippets %}
|
|
{% if software_snippet.startswith('pm_') %}
|
|
{% include 'snippets/' + software_snippet + '.j2' %}
|
|
{% endif %}
|
|
{% endfor %}
|