gitextract_9q6h212s/ ├── README.md └── src/ ├── account/ │ ├── __init__.py │ ├── admin.py │ ├── api/ │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── backends.py │ ├── forms.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── account/ │ │ ├── account.html │ │ ├── login.html │ │ ├── must_authenticate.html │ │ └── register.html │ ├── tests.py │ └── views.py ├── blog/ │ ├── __init__.py │ ├── admin.py │ ├── api/ │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── forms.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── blog/ │ │ ├── create_blog.html │ │ ├── detail_blog.html │ │ ├── edit_blog.html │ │ └── snippets/ │ │ ├── blog_post_pagination.html │ │ └── blog_post_snippet.html │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── db.sqlite3 ├── manage.py ├── mysite/ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── personal/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_delete_question.py │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── personal/ │ │ └── home.html │ ├── tests.py │ └── views.py ├── requirements.txt ├── static_cdn/ │ └── 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 │ │ └── widgets.css │ ├── fonts/ │ │ ├── LICENSE.txt │ │ └── README.txt │ ├── img/ │ │ ├── LICENSE │ │ └── README.txt │ └── js/ │ ├── SelectBox.js │ ├── SelectFilter2.js │ ├── actions.js │ ├── admin/ │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ ├── autocomplete.js │ ├── calendar.js │ ├── cancel.js │ ├── change_form.js │ ├── collapse.js │ ├── core.js │ ├── inlines.js │ ├── jquery.init.js │ ├── popup_response.js │ ├── prepopulate.js │ ├── prepopulate_init.js │ ├── timeparse.js │ ├── urlify.js │ └── vendor/ │ ├── jquery/ │ │ ├── LICENSE.txt │ │ └── jquery.js │ ├── select2/ │ │ ├── LICENSE.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 │ └── xregexp/ │ ├── LICENSE.txt │ └── xregexp.js └── templates/ ├── base.html ├── registration/ │ ├── password_change.html │ ├── password_change_done.html │ ├── password_reset_complete.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ ├── password_reset_form.html │ └── password_reset_subject.txt └── snippets/ ├── base_css.html ├── footer.html └── header.html