15 lines
523 B
Django/Jinja
15 lines
523 B
Django/Jinja
{% if list_type == 'whitelist' %}
|
|
{% if policed_groups is not None and len(policed_groups) > 0 %}
|
|
AllowGroups {{ policed_groups.join(' ') }}
|
|
{% endif %}
|
|
{% if policed_users is not None and len(policed_users) > 0 %}
|
|
AllowUsers {{ policed_users.join(' ') }}
|
|
{% endif %}
|
|
{% else %}
|
|
{% if policed_groups is not None and len(policed_groups) > 0 %}
|
|
DenyGroups {{ policed_groups.join(' ') }}
|
|
{% endif %}
|
|
{% if policed_users is not None and len(policed_users) > 0 %}
|
|
DenyGroups {{ policed_users.join(' ') }}
|
|
{% endif %}
|
|
{% endif %} |