Files
autoreply-editor/ansible/templates/config.py.j2

8 lines
315 B
Plaintext
Raw Normal View History

"""Configuration file"""
# Username and password for logging in to the site
2021-12-19 20:51:04 +01:00
BASIC_AUTH_USERNAME = "{{ auth_user }}"
2021-12-19 20:14:23 +01:00
BASIC_AUTH_PASSWORD = "{{ auth_pass }}"
# List of users. First value is the full name, second the email address
USERS = [{% for user in users %}("{{ user.name }}", "{{ user.email }}"),{% endfor %}]