├── LICENSE ├── README.md ├── app ├── backend │ ├── avatar │ │ └── logo.png │ ├── backend │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── admin.py │ │ ├── admin.pyc │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0001_initial.pyc │ │ │ ├── 0002_auto_20181019_1302.py │ │ │ ├── 0002_auto_20181019_1302.pyc │ │ │ ├── 0003_auto_20181019_1316.py │ │ │ ├── 0003_auto_20181019_1316.pyc │ │ │ ├── 0004_teams_school.py │ │ │ ├── 0004_teams_school.pyc │ │ │ ├── 0005_auto_20181021_1215.py │ │ │ ├── 0005_auto_20181021_1215.pyc │ │ │ ├── 0006_challenges_show.py │ │ │ ├── 0006_challenges_show.pyc │ │ │ ├── 0007_auto_20181021_1339.py │ │ │ ├── 0007_auto_20181021_1339.pyc │ │ │ ├── 0008_auto_20181021_1340.py │ │ │ ├── 0008_auto_20181021_1340.pyc │ │ │ ├── 0009_config.py │ │ │ ├── 0009_config.pyc │ │ │ ├── 0010_hints.py │ │ │ ├── 0010_hints.pyc │ │ │ ├── 0011_auto_20181026_2140.py │ │ │ ├── 0011_auto_20181026_2140.pyc │ │ │ ├── 0012_auto_20181031_1418.py │ │ │ ├── 0012_auto_20181031_1418.pyc │ │ │ ├── 0013_registers.py │ │ │ ├── 0013_registers.pyc │ │ │ ├── 0014_index.py │ │ │ ├── 0014_index.pyc │ │ │ ├── 0015_config_official_avatar.py │ │ │ ├── 0015_config_official_avatar.pyc │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── models.py │ │ ├── models.pyc │ │ ├── tests.py │ │ ├── views.py │ │ └── views.pyc │ ├── collected_static │ │ └── admin │ │ │ ├── css │ │ │ ├── base.css │ │ │ ├── changelists.css │ │ │ ├── dashboard.css │ │ │ ├── fonts.css │ │ │ ├── forms.css │ │ │ ├── login.css │ │ │ ├── rtl.css │ │ │ └── widgets.css │ │ │ ├── fonts │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ ├── Roboto-Light-webfont.woff │ │ │ └── Roboto-Regular-webfont.woff │ │ │ ├── img │ │ │ ├── LICENSE │ │ │ ├── README.txt │ │ │ ├── calendar-icons.svg │ │ │ ├── gis │ │ │ │ ├── move_vertex_off.svg │ │ │ │ └── move_vertex_on.svg │ │ │ ├── icon-addlink.svg │ │ │ ├── icon-alert.svg │ │ │ ├── icon-calendar.svg │ │ │ ├── icon-changelink.svg │ │ │ ├── icon-clock.svg │ │ │ ├── icon-deletelink.svg │ │ │ ├── icon-no.svg │ │ │ ├── icon-unknown-alt.svg │ │ │ ├── icon-unknown.svg │ │ │ ├── icon-yes.svg │ │ │ ├── inline-delete.svg │ │ │ ├── search.svg │ │ │ ├── selector-icons.svg │ │ │ ├── sorting-icons.svg │ │ │ ├── tooltag-add.svg │ │ │ └── tooltag-arrowright.svg │ │ │ └── js │ │ │ ├── SelectBox.js │ │ │ ├── SelectFilter2.js │ │ │ ├── actions.js │ │ │ ├── actions.min.js │ │ │ ├── admin │ │ │ ├── DateTimeShortcuts.js │ │ │ └── RelatedObjectLookups.js │ │ │ ├── calendar.js │ │ │ ├── cancel.js │ │ │ ├── change_form.js │ │ │ ├── collapse.js │ │ │ ├── collapse.min.js │ │ │ ├── core.js │ │ │ ├── inlines.js │ │ │ ├── inlines.min.js │ │ │ ├── jquery.init.js │ │ │ ├── popup_response.js │ │ │ ├── prepopulate.js │ │ │ ├── prepopulate.min.js │ │ │ ├── prepopulate_init.js │ │ │ ├── timeparse.js │ │ │ ├── urlify.js │ │ │ └── vendor │ │ │ ├── jquery │ │ │ ├── LICENSE-JQUERY.txt │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ │ └── xregexp │ │ │ ├── LICENSE-XREGEXP.txt │ │ │ ├── xregexp.js │ │ │ └── xregexp.min.js │ ├── db.sqlite3 │ ├── lctf2018_backend │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ ├── manage.py │ ├── requirements.txt │ └── uwsgi.ini ├── index.html └── static │ ├── css │ ├── app.b205e5f31a0ea74fa1c5e70628f40317.css │ ├── app.b205e5f31a0ea74fa1c5e70628f40317.css.map │ └── main.css │ ├── fonts │ └── element-icons.6f0a763.ttf │ ├── images │ ├── avatar.jpg │ ├── back.png │ └── mine-back.jpg │ ├── img │ ├── back.3c91037.png │ └── mine-back.de7e61e.jpg │ └── js │ ├── app.ea4aa63ab166ff265226.js │ ├── app.ea4aa63ab166ff265226.js.map │ ├── manifest.2ae2e69a05c33dfc65f8.js │ ├── manifest.2ae2e69a05c33dfc65f8.js.map │ ├── vendor.0d7103a0928708d54228.js │ └── vendor.0d7103a0928708d54228.js.map └── nginx.conf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/README.md -------------------------------------------------------------------------------- /app/backend/avatar/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/avatar/logo.png -------------------------------------------------------------------------------- /app/backend/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/backend/backend/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/__init__.pyc -------------------------------------------------------------------------------- /app/backend/backend/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/admin.py -------------------------------------------------------------------------------- /app/backend/backend/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/admin.pyc -------------------------------------------------------------------------------- /app/backend/backend/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/apps.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0002_auto_20181019_1302.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0002_auto_20181019_1302.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0002_auto_20181019_1302.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0002_auto_20181019_1302.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0003_auto_20181019_1316.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0003_auto_20181019_1316.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0003_auto_20181019_1316.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0003_auto_20181019_1316.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0004_teams_school.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0004_teams_school.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0004_teams_school.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0004_teams_school.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0005_auto_20181021_1215.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0005_auto_20181021_1215.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0005_auto_20181021_1215.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0005_auto_20181021_1215.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0006_challenges_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0006_challenges_show.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0006_challenges_show.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0006_challenges_show.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0007_auto_20181021_1339.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0007_auto_20181021_1339.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0007_auto_20181021_1339.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0007_auto_20181021_1339.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0008_auto_20181021_1340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0008_auto_20181021_1340.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0008_auto_20181021_1340.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0008_auto_20181021_1340.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0009_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0009_config.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0009_config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0009_config.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0010_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0010_hints.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0010_hints.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0010_hints.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0011_auto_20181026_2140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0011_auto_20181026_2140.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0011_auto_20181026_2140.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0011_auto_20181026_2140.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0012_auto_20181031_1418.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0012_auto_20181031_1418.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0012_auto_20181031_1418.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0012_auto_20181031_1418.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0013_registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0013_registers.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0013_registers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0013_registers.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0014_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0014_index.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0014_index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0014_index.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/0015_config_official_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0015_config_official_avatar.py -------------------------------------------------------------------------------- /app/backend/backend/migrations/0015_config_official_avatar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/0015_config_official_avatar.pyc -------------------------------------------------------------------------------- /app/backend/backend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/backend/backend/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/migrations/__init__.pyc -------------------------------------------------------------------------------- /app/backend/backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/models.py -------------------------------------------------------------------------------- /app/backend/backend/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/models.pyc -------------------------------------------------------------------------------- /app/backend/backend/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/tests.py -------------------------------------------------------------------------------- /app/backend/backend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/views.py -------------------------------------------------------------------------------- /app/backend/backend/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/backend/views.pyc -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/base.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/changelists.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/dashboard.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/fonts.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/forms.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/login.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/rtl.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/css/widgets.css -------------------------------------------------------------------------------- /app/backend/collected_static/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /app/backend/collected_static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/fonts/README.txt -------------------------------------------------------------------------------- /app/backend/collected_static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /app/backend/collected_static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /app/backend/collected_static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/LICENSE -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/README.txt -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/search.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/actions.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/actions.min.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/calendar.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/cancel.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/change_form.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/collapse.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/collapse.min.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/core.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/inlines.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/inlines.min.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/jquery.init.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/popup_response.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/prepopulate.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/timeparse.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/urlify.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/vendor/jquery/LICENSE-JQUERY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/vendor/jquery/LICENSE-JQUERY.txt -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /app/backend/collected_static/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/collected_static/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /app/backend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/db.sqlite3 -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/lctf2018_backend/__init__.pyc -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/lctf2018_backend/settings.py -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/lctf2018_backend/settings.pyc -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/lctf2018_backend/urls.py -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/lctf2018_backend/urls.pyc -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/lctf2018_backend/wsgi.py -------------------------------------------------------------------------------- /app/backend/lctf2018_backend/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/lctf2018_backend/wsgi.pyc -------------------------------------------------------------------------------- /app/backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/manage.py -------------------------------------------------------------------------------- /app/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/requirements.txt -------------------------------------------------------------------------------- /app/backend/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/backend/uwsgi.ini -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/index.html -------------------------------------------------------------------------------- /app/static/css/app.b205e5f31a0ea74fa1c5e70628f40317.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/css/app.b205e5f31a0ea74fa1c5e70628f40317.css -------------------------------------------------------------------------------- /app/static/css/app.b205e5f31a0ea74fa1c5e70628f40317.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/css/app.b205e5f31a0ea74fa1c5e70628f40317.css.map -------------------------------------------------------------------------------- /app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/css/main.css -------------------------------------------------------------------------------- /app/static/fonts/element-icons.6f0a763.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/fonts/element-icons.6f0a763.ttf -------------------------------------------------------------------------------- /app/static/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/images/avatar.jpg -------------------------------------------------------------------------------- /app/static/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/images/back.png -------------------------------------------------------------------------------- /app/static/images/mine-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/images/mine-back.jpg -------------------------------------------------------------------------------- /app/static/img/back.3c91037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/img/back.3c91037.png -------------------------------------------------------------------------------- /app/static/img/mine-back.de7e61e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/img/mine-back.de7e61e.jpg -------------------------------------------------------------------------------- /app/static/js/app.ea4aa63ab166ff265226.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/js/app.ea4aa63ab166ff265226.js -------------------------------------------------------------------------------- /app/static/js/app.ea4aa63ab166ff265226.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/js/app.ea4aa63ab166ff265226.js.map -------------------------------------------------------------------------------- /app/static/js/manifest.2ae2e69a05c33dfc65f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/js/manifest.2ae2e69a05c33dfc65f8.js -------------------------------------------------------------------------------- /app/static/js/manifest.2ae2e69a05c33dfc65f8.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/js/manifest.2ae2e69a05c33dfc65f8.js.map -------------------------------------------------------------------------------- /app/static/js/vendor.0d7103a0928708d54228.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/js/vendor.0d7103a0928708d54228.js -------------------------------------------------------------------------------- /app/static/js/vendor.0d7103a0928708d54228.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/app/static/js/vendor.0d7103a0928708d54228.js.map -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCTF/LCTF_2018_Platform/HEAD/nginx.conf --------------------------------------------------------------------------------