├── .gitignore ├── .ipynb_checkpoints ├── tidy_data-checkpoint.ipynb └── web_crawling-checkpoint.ipynb ├── README.md ├── data_analysis.ipynb ├── official_div.json ├── raw.csv ├── report_version.ipynb ├── restaurants_rank ├── .gitignore ├── db.sqlite3 ├── manage.py ├── restaurants_map │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── static │ │ ├── css │ │ │ ├── restaurants_map.css │ │ │ └── secret_dining.css │ │ └── image │ │ │ └── icon.png │ ├── templates │ │ └── restaurants_map │ │ │ ├── base.html │ │ │ ├── category_1_mayor.html │ │ │ ├── complete_email.html │ │ │ ├── dining_list.html │ │ │ ├── input_email.html │ │ │ ├── official_report.html │ │ │ └── secret_dinings.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── restaurants_rank │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-35.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── settings.py └── static │ ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.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 │ │ ├── autocomplete.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 │ │ ├── select2 │ │ ├── LICENSE-SELECT2.md │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE-XREGEXP.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js │ ├── css │ ├── restaurant_map.css │ └── restaurants_map.css │ └── image │ └── icon.png ├── tidy_1.csv ├── tidy_2.csv ├── web_crawling.ipynb └── 공무원지도_피드백.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/.gitignore -------------------------------------------------------------------------------- /.ipynb_checkpoints/tidy_data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/.ipynb_checkpoints/tidy_data-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/web_crawling-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/.ipynb_checkpoints/web_crawling-checkpoint.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/README.md -------------------------------------------------------------------------------- /data_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/data_analysis.ipynb -------------------------------------------------------------------------------- /official_div.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/official_div.json -------------------------------------------------------------------------------- /raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/raw.csv -------------------------------------------------------------------------------- /report_version.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/report_version.ipynb -------------------------------------------------------------------------------- /restaurants_rank/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/.gitignore -------------------------------------------------------------------------------- /restaurants_rank/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/db.sqlite3 -------------------------------------------------------------------------------- /restaurants_rank/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/manage.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/admin.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/apps.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/forms.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/migrations/0001_initial.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/models.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/static/css/restaurants_map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/static/css/restaurants_map.css -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/static/css/secret_dining.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/static/css/secret_dining.css -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/static/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/static/image/icon.png -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/templates/restaurants_map/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/templates/restaurants_map/base.html -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/templates/restaurants_map/category_1_mayor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/templates/restaurants_map/category_1_mayor.html -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/templates/restaurants_map/complete_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/templates/restaurants_map/complete_email.html -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/templates/restaurants_map/dining_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/templates/restaurants_map/dining_list.html -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/templates/restaurants_map/input_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/templates/restaurants_map/input_email.html -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/templates/restaurants_map/official_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/templates/restaurants_map/official_report.html -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/templates/restaurants_map/secret_dinings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/templates/restaurants_map/secret_dinings.html -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/tests.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/urls.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_map/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_map/views.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/settings.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/urls.py -------------------------------------------------------------------------------- /restaurants_rank/restaurants_rank/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/restaurants_rank/wsgi.py -------------------------------------------------------------------------------- /restaurants_rank/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/settings.py -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/autocomplete.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/base.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/changelists.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/dashboard.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/fonts.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/forms.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/login.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/responsive.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/rtl.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/vendor/select2/select2.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/css/widgets.css -------------------------------------------------------------------------------- /restaurants_rank/static/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /restaurants_rank/static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /restaurants_rank/static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /restaurants_rank/static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /restaurants_rank/static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/LICENSE -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/README.txt -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/search.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/actions.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/actions.min.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/autocomplete.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/calendar.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/cancel.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/change_form.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/collapse.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/collapse.min.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/core.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/inlines.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/inlines.min.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/jquery.init.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/popup_response.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/prepopulate.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/timeparse.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/urlify.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/jquery/LICENSE-JQUERY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/jquery/LICENSE-JQUERY.txt -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /restaurants_rank/static/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /restaurants_rank/static/css/restaurant_map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/css/restaurant_map.css -------------------------------------------------------------------------------- /restaurants_rank/static/css/restaurants_map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/css/restaurants_map.css -------------------------------------------------------------------------------- /restaurants_rank/static/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/restaurants_rank/static/image/icon.png -------------------------------------------------------------------------------- /tidy_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/tidy_1.csv -------------------------------------------------------------------------------- /tidy_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/tidy_2.csv -------------------------------------------------------------------------------- /web_crawling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/web_crawling.ipynb -------------------------------------------------------------------------------- /공무원지도_피드백.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jy617lee/popular_restaurants_from_officials/HEAD/공무원지도_피드백.md --------------------------------------------------------------------------------