├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── registration │ │ ├── login.html │ │ ├── password_change_done.html │ │ ├── password_change_form.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.html │ │ ├── password_reset_email.txt │ │ └── password_reset_form.html ├── tests.py ├── urls.py └── views.py ├── api ├── __init__.py └── v1 │ ├── __init__.py │ ├── group │ ├── __init__.py │ ├── serializers.py │ ├── urls.py │ └── views.py │ ├── journal │ ├── __init__.py │ ├── serializers.py │ ├── urls.py │ └── views.py │ ├── people │ ├── __init__.py │ ├── serializers.py │ ├── urls.py │ └── views.py │ ├── permissions.py │ └── urls.py ├── django_journal ├── __init__.py ├── asgi.py ├── celery.py ├── permissions.py ├── settings.py ├── urls.py └── wsgi.py ├── journal ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── static │ ├── css │ │ └── style.css │ ├── fonts │ │ ├── pt_sans │ │ │ ├── pt-sans-regular.eot │ │ │ ├── pt-sans-regular.svg │ │ │ ├── pt-sans-regular.ttf │ │ │ ├── pt-sans-regular.woff │ │ │ └── pt-sans-regular.woff2 │ │ └── roboto │ │ │ ├── roboto-700.eot │ │ │ ├── roboto-700.svg │ │ │ ├── roboto-700.ttf │ │ │ ├── roboto-700.woff │ │ │ ├── roboto-700.woff2 │ │ │ ├── roboto-italic.eot │ │ │ ├── roboto-italic.svg │ │ │ ├── roboto-italic.ttf │ │ │ ├── roboto-italic.woff │ │ │ ├── roboto-italic.woff2 │ │ │ ├── roboto-regular.eot │ │ │ ├── roboto-regular.svg │ │ │ ├── roboto-regular.ttf │ │ │ ├── roboto-regular.woff │ │ │ └── roboto-regular.woff2 │ └── img │ │ ├── default-user.png │ │ └── unnamed.jpg ├── templates │ ├── base.html │ └── journal │ │ ├── group_detail.html │ │ ├── group_list.html │ │ └── journal_lesson_list.html ├── templatetags │ ├── __init__.py │ ├── filters.py │ └── sidebar.py ├── tests.py ├── urls.py └── views.py ├── mailing ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── tasks.py ├── templates │ └── mailing │ │ ├── mailing_create.html │ │ ├── mailing_detail.html │ │ └── mailing_list.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── people ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── people │ │ ├── include │ │ ├── people_contact_info.html │ │ └── people_rating_bar.html │ │ ├── student_create.html │ │ ├── student_detail.html │ │ ├── student_lk.html │ │ ├── student_update.html │ │ ├── teacher_detail.html │ │ ├── teacher_list.html │ │ └── tpl │ │ ├── student_sidebar_tpl.html │ │ └── teacher_sidebar_tpl.html ├── tests.py ├── urls.py └── views.py ├── readme.md ├── requirements.txt └── utils └── service.py /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/login.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_reset_email.txt -------------------------------------------------------------------------------- /accounts/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/accounts/views.py -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v1/group/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v1/group/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/group/serializers.py -------------------------------------------------------------------------------- /api/v1/group/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/group/urls.py -------------------------------------------------------------------------------- /api/v1/group/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/group/views.py -------------------------------------------------------------------------------- /api/v1/journal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v1/journal/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/journal/serializers.py -------------------------------------------------------------------------------- /api/v1/journal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/journal/urls.py -------------------------------------------------------------------------------- /api/v1/journal/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/journal/views.py -------------------------------------------------------------------------------- /api/v1/people/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v1/people/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/people/serializers.py -------------------------------------------------------------------------------- /api/v1/people/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/people/urls.py -------------------------------------------------------------------------------- /api/v1/people/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/people/views.py -------------------------------------------------------------------------------- /api/v1/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/permissions.py -------------------------------------------------------------------------------- /api/v1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/api/v1/urls.py -------------------------------------------------------------------------------- /django_journal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/django_journal/__init__.py -------------------------------------------------------------------------------- /django_journal/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/django_journal/asgi.py -------------------------------------------------------------------------------- /django_journal/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/django_journal/celery.py -------------------------------------------------------------------------------- /django_journal/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/django_journal/permissions.py -------------------------------------------------------------------------------- /django_journal/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/django_journal/settings.py -------------------------------------------------------------------------------- /django_journal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/django_journal/urls.py -------------------------------------------------------------------------------- /django_journal/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/django_journal/wsgi.py -------------------------------------------------------------------------------- /journal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /journal/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/admin.py -------------------------------------------------------------------------------- /journal/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/apps.py -------------------------------------------------------------------------------- /journal/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /journal/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/models.py -------------------------------------------------------------------------------- /journal/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/css/style.css -------------------------------------------------------------------------------- /journal/static/fonts/pt_sans/pt-sans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/pt_sans/pt-sans-regular.eot -------------------------------------------------------------------------------- /journal/static/fonts/pt_sans/pt-sans-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/pt_sans/pt-sans-regular.svg -------------------------------------------------------------------------------- /journal/static/fonts/pt_sans/pt-sans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/pt_sans/pt-sans-regular.ttf -------------------------------------------------------------------------------- /journal/static/fonts/pt_sans/pt-sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/pt_sans/pt-sans-regular.woff -------------------------------------------------------------------------------- /journal/static/fonts/pt_sans/pt-sans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/pt_sans/pt-sans-regular.woff2 -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-700.eot -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-700.svg -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-700.ttf -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-700.woff -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-700.woff2 -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-italic.eot -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-italic.svg -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-italic.ttf -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-italic.woff -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-italic.woff2 -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-regular.eot -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-regular.svg -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-regular.ttf -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-regular.woff -------------------------------------------------------------------------------- /journal/static/fonts/roboto/roboto-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/fonts/roboto/roboto-regular.woff2 -------------------------------------------------------------------------------- /journal/static/img/default-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/img/default-user.png -------------------------------------------------------------------------------- /journal/static/img/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/static/img/unnamed.jpg -------------------------------------------------------------------------------- /journal/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/templates/base.html -------------------------------------------------------------------------------- /journal/templates/journal/group_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/templates/journal/group_detail.html -------------------------------------------------------------------------------- /journal/templates/journal/group_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/templates/journal/group_list.html -------------------------------------------------------------------------------- /journal/templates/journal/journal_lesson_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/templates/journal/journal_lesson_list.html -------------------------------------------------------------------------------- /journal/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /journal/templatetags/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/templatetags/filters.py -------------------------------------------------------------------------------- /journal/templatetags/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/templatetags/sidebar.py -------------------------------------------------------------------------------- /journal/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/tests.py -------------------------------------------------------------------------------- /journal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/urls.py -------------------------------------------------------------------------------- /journal/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/journal/views.py -------------------------------------------------------------------------------- /mailing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailing/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/admin.py -------------------------------------------------------------------------------- /mailing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/apps.py -------------------------------------------------------------------------------- /mailing/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/forms.py -------------------------------------------------------------------------------- /mailing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/models.py -------------------------------------------------------------------------------- /mailing/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/tasks.py -------------------------------------------------------------------------------- /mailing/templates/mailing/mailing_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/templates/mailing/mailing_create.html -------------------------------------------------------------------------------- /mailing/templates/mailing/mailing_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/templates/mailing/mailing_detail.html -------------------------------------------------------------------------------- /mailing/templates/mailing/mailing_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/templates/mailing/mailing_list.html -------------------------------------------------------------------------------- /mailing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/tests.py -------------------------------------------------------------------------------- /mailing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/urls.py -------------------------------------------------------------------------------- /mailing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/mailing/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/manage.py -------------------------------------------------------------------------------- /people/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /people/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/admin.py -------------------------------------------------------------------------------- /people/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/apps.py -------------------------------------------------------------------------------- /people/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/forms.py -------------------------------------------------------------------------------- /people/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /people/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/models.py -------------------------------------------------------------------------------- /people/templates/people/include/people_contact_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/include/people_contact_info.html -------------------------------------------------------------------------------- /people/templates/people/include/people_rating_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/include/people_rating_bar.html -------------------------------------------------------------------------------- /people/templates/people/student_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/student_create.html -------------------------------------------------------------------------------- /people/templates/people/student_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/student_detail.html -------------------------------------------------------------------------------- /people/templates/people/student_lk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/student_lk.html -------------------------------------------------------------------------------- /people/templates/people/student_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/student_update.html -------------------------------------------------------------------------------- /people/templates/people/teacher_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/teacher_detail.html -------------------------------------------------------------------------------- /people/templates/people/teacher_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/teacher_list.html -------------------------------------------------------------------------------- /people/templates/people/tpl/student_sidebar_tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/tpl/student_sidebar_tpl.html -------------------------------------------------------------------------------- /people/templates/people/tpl/teacher_sidebar_tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/templates/people/tpl/teacher_sidebar_tpl.html -------------------------------------------------------------------------------- /people/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/tests.py -------------------------------------------------------------------------------- /people/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/urls.py -------------------------------------------------------------------------------- /people/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/people/views.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raferti/django_journal/HEAD/utils/service.py --------------------------------------------------------------------------------