├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── Procfile ├── README.md ├── about ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── anonymous ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── calender ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200824_2300.py │ ├── 0003_auto_20200824_2303.py │ ├── 0004_auto_20200824_2310.py │ ├── 0005_auto_20200824_2314.py │ ├── 0006_auto_20200825_1626.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── free ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── notice ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── reborn_web ├── __init__.py ├── asgi.py ├── settings │ ├── base.py │ ├── dev.py │ └── prod.py ├── settings_local.py ├── urls.py └── wsgi.py ├── requirements.txt ├── runtime.txt ├── static ├── css │ ├── 404error.css │ ├── about │ │ └── about.css │ ├── anonymous │ │ ├── anonymous-detail.css │ │ ├── anonymous-list.css │ │ └── loading.css │ ├── calendar │ │ └── calendar.css │ ├── index │ │ ├── aos.css │ │ ├── bootstrap-datepicker.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-reboot.css │ │ │ └── bootstrap.css │ │ ├── jquery-ui.css │ │ ├── jquery.fancybox.min.css │ │ ├── magnific-popup.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.min.css │ │ ├── style.css │ │ └── style.css.map │ ├── summernote │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ ├── summernote.woff │ │ │ └── summernote.woff2 │ │ └── summernote.css │ ├── timetable │ │ └── timetable.css │ └── users │ │ ├── checkbox.css │ │ └── main.css ├── img │ ├── index │ │ ├── anonymous.jpg │ │ ├── chatbot.jpg │ │ ├── free.jpg │ │ └── timetable.jpg │ ├── injelogo.jpg │ ├── logo1.jpg │ ├── logo2.jpg │ ├── logo3.jpg │ ├── logo4.png │ └── reborn_favicon.ico └── js │ ├── anonymous │ └── infinite-scroll.js │ ├── calendar │ ├── calendar.js │ └── event.js │ ├── index │ ├── aos.js │ ├── bootstrap-datepicker.min.js │ ├── bootstrap.min.js │ ├── customCarousel.js │ ├── isotope.pkgd.min.js │ ├── jquery-3.3.1.min.js │ ├── jquery-migrate-3.0.1.min.js │ ├── jquery-ui.js │ ├── jquery.countdown.min.js │ ├── jquery.easing.1.3.js │ ├── jquery.fancybox.min.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.stellar.js │ ├── jquery.sticky.js │ ├── main.js │ ├── owl.carousel.min.js │ ├── popper.min.js │ └── slick.min.js │ ├── lang │ └── summernote-ko-KR.js │ ├── summernote │ └── summernote.js │ └── users │ ├── browserCheck.js │ ├── popper.js │ └── sidebar.js ├── templates ├── 404.html ├── about │ ├── circles_list.html │ ├── circles_update.html │ ├── labs_list.html │ ├── labs_update.html │ ├── organization_add_form.html │ ├── organization_list.html │ └── organization_update.html ├── anonymous │ ├── anonymous_detail.html │ ├── anonymous_list.html │ └── anonymous_write.html ├── calendar │ └── calendar.html ├── free │ ├── free_detail.html │ ├── free_list.html │ └── free_write.html ├── notice │ ├── notice_detail.html │ ├── notice_list.html │ └── notice_write.html ├── timetable │ ├── timetable_add_form.html │ ├── timetable_edit_form.html │ ├── timetable_list.html │ ├── timetable_mytable.html │ └── timetable_update.html └── users │ ├── agreement.html │ ├── base.html │ ├── base_write.html │ ├── index.html │ ├── login.html │ ├── main.html │ ├── main_base.html │ ├── password_reset.html │ ├── profile.html │ ├── profile_comment.html │ ├── profile_delete.html │ ├── profile_password.html │ ├── profile_post.html │ ├── profile_update.html │ ├── recovery_email.html │ ├── recovery_id.html │ ├── recovery_pw.html │ ├── register.html │ ├── register_cs.html │ ├── register_email.html │ ├── register_success.html │ └── user_base.html ├── timetable ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py └── users ├── __init__.py ├── admin.py ├── apps.py ├── choice.py ├── decorators.py ├── forms.py ├── helper.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn reborn_web.wsgi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/README.md -------------------------------------------------------------------------------- /about/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /about/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/admin.py -------------------------------------------------------------------------------- /about/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/apps.py -------------------------------------------------------------------------------- /about/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/forms.py -------------------------------------------------------------------------------- /about/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/migrations/0001_initial.py -------------------------------------------------------------------------------- /about/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /about/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/models.py -------------------------------------------------------------------------------- /about/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/tests.py -------------------------------------------------------------------------------- /about/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/urls.py -------------------------------------------------------------------------------- /about/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/about/views.py -------------------------------------------------------------------------------- /anonymous/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anonymous/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/admin.py -------------------------------------------------------------------------------- /anonymous/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/apps.py -------------------------------------------------------------------------------- /anonymous/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/forms.py -------------------------------------------------------------------------------- /anonymous/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/migrations/0001_initial.py -------------------------------------------------------------------------------- /anonymous/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anonymous/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/models.py -------------------------------------------------------------------------------- /anonymous/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/tests.py -------------------------------------------------------------------------------- /anonymous/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/urls.py -------------------------------------------------------------------------------- /anonymous/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/anonymous/views.py -------------------------------------------------------------------------------- /calender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /calender/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/admin.py -------------------------------------------------------------------------------- /calender/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/apps.py -------------------------------------------------------------------------------- /calender/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/migrations/0001_initial.py -------------------------------------------------------------------------------- /calender/migrations/0002_auto_20200824_2300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/migrations/0002_auto_20200824_2300.py -------------------------------------------------------------------------------- /calender/migrations/0003_auto_20200824_2303.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/migrations/0003_auto_20200824_2303.py -------------------------------------------------------------------------------- /calender/migrations/0004_auto_20200824_2310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/migrations/0004_auto_20200824_2310.py -------------------------------------------------------------------------------- /calender/migrations/0005_auto_20200824_2314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/migrations/0005_auto_20200824_2314.py -------------------------------------------------------------------------------- /calender/migrations/0006_auto_20200825_1626.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/migrations/0006_auto_20200825_1626.py -------------------------------------------------------------------------------- /calender/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /calender/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/models.py -------------------------------------------------------------------------------- /calender/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/tests.py -------------------------------------------------------------------------------- /calender/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/urls.py -------------------------------------------------------------------------------- /calender/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/calender/views.py -------------------------------------------------------------------------------- /free/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /free/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/admin.py -------------------------------------------------------------------------------- /free/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/apps.py -------------------------------------------------------------------------------- /free/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/forms.py -------------------------------------------------------------------------------- /free/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/migrations/0001_initial.py -------------------------------------------------------------------------------- /free/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /free/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/models.py -------------------------------------------------------------------------------- /free/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/tests.py -------------------------------------------------------------------------------- /free/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/urls.py -------------------------------------------------------------------------------- /free/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/free/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/manage.py -------------------------------------------------------------------------------- /notice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/admin.py -------------------------------------------------------------------------------- /notice/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/apps.py -------------------------------------------------------------------------------- /notice/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/forms.py -------------------------------------------------------------------------------- /notice/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/migrations/0001_initial.py -------------------------------------------------------------------------------- /notice/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/models.py -------------------------------------------------------------------------------- /notice/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/tests.py -------------------------------------------------------------------------------- /notice/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/urls.py -------------------------------------------------------------------------------- /notice/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/notice/views.py -------------------------------------------------------------------------------- /reborn_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reborn_web/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/reborn_web/asgi.py -------------------------------------------------------------------------------- /reborn_web/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/reborn_web/settings/base.py -------------------------------------------------------------------------------- /reborn_web/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/reborn_web/settings/dev.py -------------------------------------------------------------------------------- /reborn_web/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/reborn_web/settings/prod.py -------------------------------------------------------------------------------- /reborn_web/settings_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/reborn_web/settings_local.py -------------------------------------------------------------------------------- /reborn_web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/reborn_web/urls.py -------------------------------------------------------------------------------- /reborn_web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/reborn_web/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.4 -------------------------------------------------------------------------------- /static/css/404error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/404error.css -------------------------------------------------------------------------------- /static/css/about/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/about/about.css -------------------------------------------------------------------------------- /static/css/anonymous/anonymous-detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/anonymous/anonymous-detail.css -------------------------------------------------------------------------------- /static/css/anonymous/anonymous-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/anonymous/anonymous-list.css -------------------------------------------------------------------------------- /static/css/anonymous/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/anonymous/loading.css -------------------------------------------------------------------------------- /static/css/calendar/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/calendar/calendar.css -------------------------------------------------------------------------------- /static/css/index/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/aos.css -------------------------------------------------------------------------------- /static/css/index/bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/bootstrap-datepicker.css -------------------------------------------------------------------------------- /static/css/index/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/index/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/css/index/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /static/css/index/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/css/index/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /static/css/index/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/jquery-ui.css -------------------------------------------------------------------------------- /static/css/index/jquery.fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/jquery.fancybox.min.css -------------------------------------------------------------------------------- /static/css/index/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/magnific-popup.css -------------------------------------------------------------------------------- /static/css/index/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/owl.carousel.min.css -------------------------------------------------------------------------------- /static/css/index/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/owl.theme.default.min.css -------------------------------------------------------------------------------- /static/css/index/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/style.css -------------------------------------------------------------------------------- /static/css/index/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/index/style.css.map -------------------------------------------------------------------------------- /static/css/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/summernote/font/summernote.eot -------------------------------------------------------------------------------- /static/css/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /static/css/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/summernote/font/summernote.woff -------------------------------------------------------------------------------- /static/css/summernote/font/summernote.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/summernote/font/summernote.woff2 -------------------------------------------------------------------------------- /static/css/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/summernote/summernote.css -------------------------------------------------------------------------------- /static/css/timetable/timetable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/timetable/timetable.css -------------------------------------------------------------------------------- /static/css/users/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/users/checkbox.css -------------------------------------------------------------------------------- /static/css/users/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/css/users/main.css -------------------------------------------------------------------------------- /static/img/index/anonymous.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/index/anonymous.jpg -------------------------------------------------------------------------------- /static/img/index/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/index/chatbot.jpg -------------------------------------------------------------------------------- /static/img/index/free.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/index/free.jpg -------------------------------------------------------------------------------- /static/img/index/timetable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/index/timetable.jpg -------------------------------------------------------------------------------- /static/img/injelogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/injelogo.jpg -------------------------------------------------------------------------------- /static/img/logo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/logo1.jpg -------------------------------------------------------------------------------- /static/img/logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/logo2.jpg -------------------------------------------------------------------------------- /static/img/logo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/logo3.jpg -------------------------------------------------------------------------------- /static/img/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/logo4.png -------------------------------------------------------------------------------- /static/img/reborn_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/img/reborn_favicon.ico -------------------------------------------------------------------------------- /static/js/anonymous/infinite-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/anonymous/infinite-scroll.js -------------------------------------------------------------------------------- /static/js/calendar/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/calendar/calendar.js -------------------------------------------------------------------------------- /static/js/calendar/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/calendar/event.js -------------------------------------------------------------------------------- /static/js/index/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/aos.js -------------------------------------------------------------------------------- /static/js/index/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /static/js/index/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/index/customCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/customCarousel.js -------------------------------------------------------------------------------- /static/js/index/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/isotope.pkgd.min.js -------------------------------------------------------------------------------- /static/js/index/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/js/index/jquery-migrate-3.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery-migrate-3.0.1.min.js -------------------------------------------------------------------------------- /static/js/index/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery-ui.js -------------------------------------------------------------------------------- /static/js/index/jquery.countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery.countdown.min.js -------------------------------------------------------------------------------- /static/js/index/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery.easing.1.3.js -------------------------------------------------------------------------------- /static/js/index/jquery.fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery.fancybox.min.js -------------------------------------------------------------------------------- /static/js/index/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /static/js/index/jquery.stellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery.stellar.js -------------------------------------------------------------------------------- /static/js/index/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/jquery.sticky.js -------------------------------------------------------------------------------- /static/js/index/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/main.js -------------------------------------------------------------------------------- /static/js/index/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/owl.carousel.min.js -------------------------------------------------------------------------------- /static/js/index/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/popper.min.js -------------------------------------------------------------------------------- /static/js/index/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/index/slick.min.js -------------------------------------------------------------------------------- /static/js/lang/summernote-ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/lang/summernote-ko-KR.js -------------------------------------------------------------------------------- /static/js/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/summernote/summernote.js -------------------------------------------------------------------------------- /static/js/users/browserCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/users/browserCheck.js -------------------------------------------------------------------------------- /static/js/users/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/users/popper.js -------------------------------------------------------------------------------- /static/js/users/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/static/js/users/sidebar.js -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/about/circles_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/about/circles_list.html -------------------------------------------------------------------------------- /templates/about/circles_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/about/circles_update.html -------------------------------------------------------------------------------- /templates/about/labs_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/about/labs_list.html -------------------------------------------------------------------------------- /templates/about/labs_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/about/labs_update.html -------------------------------------------------------------------------------- /templates/about/organization_add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/about/organization_add_form.html -------------------------------------------------------------------------------- /templates/about/organization_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/about/organization_list.html -------------------------------------------------------------------------------- /templates/about/organization_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/about/organization_update.html -------------------------------------------------------------------------------- /templates/anonymous/anonymous_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/anonymous/anonymous_detail.html -------------------------------------------------------------------------------- /templates/anonymous/anonymous_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/anonymous/anonymous_list.html -------------------------------------------------------------------------------- /templates/anonymous/anonymous_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/anonymous/anonymous_write.html -------------------------------------------------------------------------------- /templates/calendar/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/calendar/calendar.html -------------------------------------------------------------------------------- /templates/free/free_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/free/free_detail.html -------------------------------------------------------------------------------- /templates/free/free_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/free/free_list.html -------------------------------------------------------------------------------- /templates/free/free_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/free/free_write.html -------------------------------------------------------------------------------- /templates/notice/notice_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/notice/notice_detail.html -------------------------------------------------------------------------------- /templates/notice/notice_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/notice/notice_list.html -------------------------------------------------------------------------------- /templates/notice/notice_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/notice/notice_write.html -------------------------------------------------------------------------------- /templates/timetable/timetable_add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/timetable/timetable_add_form.html -------------------------------------------------------------------------------- /templates/timetable/timetable_edit_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/timetable/timetable_edit_form.html -------------------------------------------------------------------------------- /templates/timetable/timetable_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/timetable/timetable_list.html -------------------------------------------------------------------------------- /templates/timetable/timetable_mytable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/timetable/timetable_mytable.html -------------------------------------------------------------------------------- /templates/timetable/timetable_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/timetable/timetable_update.html -------------------------------------------------------------------------------- /templates/users/agreement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/agreement.html -------------------------------------------------------------------------------- /templates/users/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/base.html -------------------------------------------------------------------------------- /templates/users/base_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/base_write.html -------------------------------------------------------------------------------- /templates/users/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/index.html -------------------------------------------------------------------------------- /templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/login.html -------------------------------------------------------------------------------- /templates/users/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/main.html -------------------------------------------------------------------------------- /templates/users/main_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/main_base.html -------------------------------------------------------------------------------- /templates/users/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/password_reset.html -------------------------------------------------------------------------------- /templates/users/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/profile.html -------------------------------------------------------------------------------- /templates/users/profile_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/profile_comment.html -------------------------------------------------------------------------------- /templates/users/profile_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/profile_delete.html -------------------------------------------------------------------------------- /templates/users/profile_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/profile_password.html -------------------------------------------------------------------------------- /templates/users/profile_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/profile_post.html -------------------------------------------------------------------------------- /templates/users/profile_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/profile_update.html -------------------------------------------------------------------------------- /templates/users/recovery_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/recovery_email.html -------------------------------------------------------------------------------- /templates/users/recovery_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/recovery_id.html -------------------------------------------------------------------------------- /templates/users/recovery_pw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/recovery_pw.html -------------------------------------------------------------------------------- /templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/register.html -------------------------------------------------------------------------------- /templates/users/register_cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/register_cs.html -------------------------------------------------------------------------------- /templates/users/register_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/register_email.html -------------------------------------------------------------------------------- /templates/users/register_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/register_success.html -------------------------------------------------------------------------------- /templates/users/user_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/templates/users/user_base.html -------------------------------------------------------------------------------- /timetable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timetable/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/admin.py -------------------------------------------------------------------------------- /timetable/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/apps.py -------------------------------------------------------------------------------- /timetable/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/forms.py -------------------------------------------------------------------------------- /timetable/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/migrations/0001_initial.py -------------------------------------------------------------------------------- /timetable/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timetable/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/models.py -------------------------------------------------------------------------------- /timetable/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/tests.py -------------------------------------------------------------------------------- /timetable/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/urls.py -------------------------------------------------------------------------------- /timetable/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/timetable/views.py -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/choice.py -------------------------------------------------------------------------------- /users/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/decorators.py -------------------------------------------------------------------------------- /users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/forms.py -------------------------------------------------------------------------------- /users/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/helper.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/models.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParkHyeonChae/django-reborn-web/HEAD/users/views.py --------------------------------------------------------------------------------