├── .gitignore ├── LICENSE ├── README ├── __init__.py ├── application ├── __init__.py ├── admin.py ├── fixtures │ └── application.json ├── forms.py ├── models.py ├── templates │ ├── application_form.html │ ├── application_view.html │ └── new_application_form.html ├── templatetags │ ├── __init__.py │ └── application_tags.py ├── tests.py ├── urls.py └── views.py ├── field ├── __init__.py ├── forms.py ├── models.py ├── templates │ ├── field_form.html │ ├── new_field_form.html │ └── new_model_field_form.html ├── templatetags │ ├── __init__.py │ └── field_tags.py ├── tests.py ├── urls.py └── views.py ├── form ├── __init__.py ├── fixtures │ └── form.json ├── forms.py ├── models.py ├── templates │ ├── model_form_form.html │ ├── model_form_view.html │ └── new_model_form_form.html ├── templatetags │ ├── __init__.py │ └── form_tags.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── model ├── __init__.py ├── admin.py ├── fixtures │ └── model.json ├── forms.py ├── models.py ├── templates │ ├── model_form.html │ ├── model_view.html │ └── new_model_form.html ├── templatetags │ ├── __init__.py │ └── model_tags.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── project ├── __init__.py ├── admin.py ├── fixtures │ ├── project.json │ └── user.json ├── forms.py ├── models.py ├── templates │ ├── __init__.py │ ├── application │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── form.html │ │ │ ├── list.html │ │ │ └── view.html │ │ ├── urls.py │ │ └── views.py │ ├── manage.py │ ├── media │ │ └── css │ │ │ ├── ie6.css │ │ │ ├── print.css │ │ │ ├── reset.css │ │ │ └── screen.css │ ├── settings.py │ ├── templates │ │ ├── base.html │ │ ├── homepage.html │ │ └── registration │ │ │ ├── login.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_email.html │ │ │ └── password_reset_form.html │ └── urls.py ├── templatetags │ ├── __init__.py │ └── project_tags.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── settings.py ├── sql_update ├── 02_21_2011_db_index.sql └── 02_21_2011_profile.sql ├── static ├── css │ └── screen.css ├── img │ ├── ajax_loader.gif │ ├── dg.png │ └── icons │ │ ├── accept.png │ │ ├── add.png │ │ ├── database_save.png │ │ └── delete.png └── js │ ├── jquery-1.3.2.min.js │ └── jquery.form.js ├── templates ├── 404.html ├── 500.html ├── base.html ├── project │ ├── project_list.html │ ├── project_view.html │ ├── public_project_list.html │ └── public_project_view.html ├── registration │ ├── activate.html │ ├── activation_complete.html │ ├── activation_email.txt │ ├── activation_email_subject.txt │ ├── login.html │ ├── password_change_done.html │ ├── password_change_form.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ ├── password_reset_form.html │ ├── registration_complete.html │ └── registration_form.html └── screenshot.html ├── urls.py └── view ├── __init__.py ├── models.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/README -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/admin.py -------------------------------------------------------------------------------- /application/fixtures/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/fixtures/application.json -------------------------------------------------------------------------------- /application/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/forms.py -------------------------------------------------------------------------------- /application/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/models.py -------------------------------------------------------------------------------- /application/templates/application_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/templates/application_form.html -------------------------------------------------------------------------------- /application/templates/application_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/templates/application_view.html -------------------------------------------------------------------------------- /application/templates/new_application_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/templates/new_application_form.html -------------------------------------------------------------------------------- /application/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/templatetags/application_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/templatetags/application_tags.py -------------------------------------------------------------------------------- /application/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/tests.py -------------------------------------------------------------------------------- /application/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/urls.py -------------------------------------------------------------------------------- /application/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/application/views.py -------------------------------------------------------------------------------- /field/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /field/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/forms.py -------------------------------------------------------------------------------- /field/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/models.py -------------------------------------------------------------------------------- /field/templates/field_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/templates/field_form.html -------------------------------------------------------------------------------- /field/templates/new_field_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/templates/new_field_form.html -------------------------------------------------------------------------------- /field/templates/new_model_field_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/templates/new_model_field_form.html -------------------------------------------------------------------------------- /field/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /field/templatetags/field_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/templatetags/field_tags.py -------------------------------------------------------------------------------- /field/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/tests.py -------------------------------------------------------------------------------- /field/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/urls.py -------------------------------------------------------------------------------- /field/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/field/views.py -------------------------------------------------------------------------------- /form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form/fixtures/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/fixtures/form.json -------------------------------------------------------------------------------- /form/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/forms.py -------------------------------------------------------------------------------- /form/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/models.py -------------------------------------------------------------------------------- /form/templates/model_form_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/templates/model_form_form.html -------------------------------------------------------------------------------- /form/templates/model_form_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/templates/model_form_view.html -------------------------------------------------------------------------------- /form/templates/new_model_form_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/templates/new_model_form_form.html -------------------------------------------------------------------------------- /form/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form/templatetags/form_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/templatetags/form_tags.py -------------------------------------------------------------------------------- /form/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/tests.py -------------------------------------------------------------------------------- /form/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/urls.py -------------------------------------------------------------------------------- /form/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/form/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/manage.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/admin.py -------------------------------------------------------------------------------- /model/fixtures/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/fixtures/model.json -------------------------------------------------------------------------------- /model/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/forms.py -------------------------------------------------------------------------------- /model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/models.py -------------------------------------------------------------------------------- /model/templates/model_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/templates/model_form.html -------------------------------------------------------------------------------- /model/templates/model_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/templates/model_view.html -------------------------------------------------------------------------------- /model/templates/new_model_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/templates/new_model_form.html -------------------------------------------------------------------------------- /model/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/templatetags/model_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/templatetags/model_tags.py -------------------------------------------------------------------------------- /model/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/tests.py -------------------------------------------------------------------------------- /model/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/urls.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/utils.py -------------------------------------------------------------------------------- /model/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/model/views.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/admin.py -------------------------------------------------------------------------------- /project/fixtures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/fixtures/project.json -------------------------------------------------------------------------------- /project/fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/fixtures/user.json -------------------------------------------------------------------------------- /project/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/forms.py -------------------------------------------------------------------------------- /project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/models.py -------------------------------------------------------------------------------- /project/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/templates/application/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/templates/application/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/admin.py -------------------------------------------------------------------------------- /project/templates/application/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/forms.py -------------------------------------------------------------------------------- /project/templates/application/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/models.py -------------------------------------------------------------------------------- /project/templates/application/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/templates/base.html -------------------------------------------------------------------------------- /project/templates/application/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/templates/form.html -------------------------------------------------------------------------------- /project/templates/application/templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/templates/list.html -------------------------------------------------------------------------------- /project/templates/application/templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/templates/view.html -------------------------------------------------------------------------------- /project/templates/application/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/urls.py -------------------------------------------------------------------------------- /project/templates/application/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/application/views.py -------------------------------------------------------------------------------- /project/templates/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/manage.py -------------------------------------------------------------------------------- /project/templates/media/css/ie6.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/templates/media/css/print.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/templates/media/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/media/css/reset.css -------------------------------------------------------------------------------- /project/templates/media/css/screen.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/templates/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/settings.py -------------------------------------------------------------------------------- /project/templates/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/base.html -------------------------------------------------------------------------------- /project/templates/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/homepage.html -------------------------------------------------------------------------------- /project/templates/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/login.html -------------------------------------------------------------------------------- /project/templates/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /project/templates/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /project/templates/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /project/templates/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /project/templates/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /project/templates/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /project/templates/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /project/templates/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templates/urls.py -------------------------------------------------------------------------------- /project/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/templatetags/project_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/templatetags/project_tags.py -------------------------------------------------------------------------------- /project/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/tests.py -------------------------------------------------------------------------------- /project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/urls.py -------------------------------------------------------------------------------- /project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/project/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/settings.py -------------------------------------------------------------------------------- /sql_update/02_21_2011_db_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/sql_update/02_21_2011_db_index.sql -------------------------------------------------------------------------------- /sql_update/02_21_2011_profile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/sql_update/02_21_2011_profile.sql -------------------------------------------------------------------------------- /static/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/css/screen.css -------------------------------------------------------------------------------- /static/img/ajax_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/img/ajax_loader.gif -------------------------------------------------------------------------------- /static/img/dg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/img/dg.png -------------------------------------------------------------------------------- /static/img/icons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/img/icons/accept.png -------------------------------------------------------------------------------- /static/img/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/img/icons/add.png -------------------------------------------------------------------------------- /static/img/icons/database_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/img/icons/database_save.png -------------------------------------------------------------------------------- /static/img/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/img/icons/delete.png -------------------------------------------------------------------------------- /static/js/jquery-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/js/jquery-1.3.2.min.js -------------------------------------------------------------------------------- /static/js/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/static/js/jquery.form.js -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/project/project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/project/project_list.html -------------------------------------------------------------------------------- /templates/project/project_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/project/project_view.html -------------------------------------------------------------------------------- /templates/project/public_project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/project/public_project_list.html -------------------------------------------------------------------------------- /templates/project/public_project_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/project/public_project_view.html -------------------------------------------------------------------------------- /templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/activate.html -------------------------------------------------------------------------------- /templates/registration/activation_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/activation_complete.html -------------------------------------------------------------------------------- /templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- 1 | Activation of your account 2 | -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/registration/registration_form.html -------------------------------------------------------------------------------- /templates/screenshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/templates/screenshot.html -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/urls.py -------------------------------------------------------------------------------- /view/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /view/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/view/models.py -------------------------------------------------------------------------------- /view/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehorror/djangogenerator/HEAD/view/tests.py -------------------------------------------------------------------------------- /view/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | --------------------------------------------------------------------------------