add contact app + konkurs contact form
authorJan Szejko <janek37@gmail.com>
Wed, 20 Sep 2017 13:00:40 +0000 (15:00 +0200)
committerJan Szejko <janek37@gmail.com>
Wed, 20 Sep 2017 14:01:31 +0000 (16:01 +0200)
commit98b2c09ef1f1c8288a31517f61423264c6b3291c
tree9a411b0f8d380c6bbd16446524e2016dfc8136b1
parent4cadef92cdc776f7da86edfd1bd3547f4d91c816
add contact app + konkurs contact form
31 files changed:
requirements/requirements.txt
src/chunks/templatetags/__init__.py [new file with mode: 0644]
src/chunks/templatetags/chunks.py [new file with mode: 0644]
src/contact/__init__.py [new file with mode: 0644]
src/contact/admin.py [new file with mode: 0644]
src/contact/fields.py [new file with mode: 0644]
src/contact/forms.py [new file with mode: 0644]
src/contact/locale/pl/LC_MESSAGES/django.po [new file with mode: 0644]
src/contact/migrations/0001_initial.py [new file with mode: 0644]
src/contact/migrations/__init__.py [new file with mode: 0644]
src/contact/models.py [new file with mode: 0644]
src/contact/templates/admin/contact/contact/change_list.html [new file with mode: 0644]
src/contact/templates/contact/disabled_contact_form.html [new file with mode: 0644]
src/contact/templates/contact/form.html [new file with mode: 0644]
src/contact/templates/contact/mail_body.txt [new file with mode: 0644]
src/contact/templates/contact/mail_managers_body.txt [new file with mode: 0644]
src/contact/templates/contact/mail_managers_subject.txt [new file with mode: 0644]
src/contact/templates/contact/mail_subject.txt [new file with mode: 0644]
src/contact/templates/contact/thanks.html [new file with mode: 0644]
src/contact/templatetags/__init__.py [new file with mode: 0755]
src/contact/templatetags/contact_tags.py [new file with mode: 0755]
src/contact/urls.py [new file with mode: 0644]
src/contact/views.py [new file with mode: 0644]
src/contact/widgets.py [new file with mode: 0644]
src/wolnelektury/contact_forms.py [new file with mode: 0644]
src/wolnelektury/settings/__init__.py
src/wolnelektury/settings/custom.py
src/wolnelektury/static/scss/main/form.scss
src/wolnelektury/templates/main_page.html
src/wolnelektury/urls.py
src/wolnelektury/utils.py