├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── mysite.iml └── vcs.xml ├── README.md ├── db.sqlite3 ├── manage.py ├── mysite ├── __init__.py ├── settings.py ├── urls.py ├── util │ ├── JsonUtil.py │ ├── TestException.py │ └── __init__.py └── wsgi.py ├── store ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── store_list.html ├── tests.py ├── urls.py └── views.py ├── testClass ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161125_1448.py │ └── __init__.py ├── models.py ├── templates │ ├── base.html │ └── testClass │ │ ├── food_detail.html │ │ ├── food_list.html │ │ ├── food_list_def.html │ │ └── food_list_query.html ├── tests.py ├── urls.py └── views.py ├── testForm ├── __init__.py ├── admin.py ├── apps.py ├── form.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── testForm │ │ ├── base.html │ │ ├── food_add.html │ │ └── thanks.html ├── tests.py ├── urls.py └── views.py ├── testapp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── next │ ├── __init__.py │ └── testviews.py ├── tests.py ├── urls.py └── views.py ├── testrestapi ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── static │ └── rest_framework_docs │ │ └── css │ │ └── style.css ├── templates │ └── rest_framework_docs │ │ └── docs.html ├── tests.py ├── urls.py └── views.py └── testrestapi1 ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── serializer.py ├── tests.py ├── urls.py └── views.py /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/mysite.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/.idea/mysite.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/mysite/__init__.py -------------------------------------------------------------------------------- /mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/mysite/settings.py -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /mysite/util/JsonUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/mysite/util/JsonUtil.py -------------------------------------------------------------------------------- /mysite/util/TestException.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/mysite/util/TestException.py -------------------------------------------------------------------------------- /mysite/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/mysite/wsgi.py -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/admin.py -------------------------------------------------------------------------------- /store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/apps.py -------------------------------------------------------------------------------- /store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/models.py -------------------------------------------------------------------------------- /store/templates/store_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/templates/store_list.html -------------------------------------------------------------------------------- /store/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/tests.py -------------------------------------------------------------------------------- /store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/urls.py -------------------------------------------------------------------------------- /store/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/store/views.py -------------------------------------------------------------------------------- /testClass/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testClass/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/admin.py -------------------------------------------------------------------------------- /testClass/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/apps.py -------------------------------------------------------------------------------- /testClass/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/migrations/0001_initial.py -------------------------------------------------------------------------------- /testClass/migrations/0002_auto_20161125_1448.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/migrations/0002_auto_20161125_1448.py -------------------------------------------------------------------------------- /testClass/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testClass/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/models.py -------------------------------------------------------------------------------- /testClass/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/templates/base.html -------------------------------------------------------------------------------- /testClass/templates/testClass/food_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/templates/testClass/food_detail.html -------------------------------------------------------------------------------- /testClass/templates/testClass/food_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/templates/testClass/food_list.html -------------------------------------------------------------------------------- /testClass/templates/testClass/food_list_def.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/templates/testClass/food_list_def.html -------------------------------------------------------------------------------- /testClass/templates/testClass/food_list_query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/templates/testClass/food_list_query.html -------------------------------------------------------------------------------- /testClass/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/tests.py -------------------------------------------------------------------------------- /testClass/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/urls.py -------------------------------------------------------------------------------- /testClass/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testClass/views.py -------------------------------------------------------------------------------- /testForm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testForm/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/admin.py -------------------------------------------------------------------------------- /testForm/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/apps.py -------------------------------------------------------------------------------- /testForm/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/form.py -------------------------------------------------------------------------------- /testForm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testForm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/models.py -------------------------------------------------------------------------------- /testForm/templates/testForm/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/templates/testForm/base.html -------------------------------------------------------------------------------- /testForm/templates/testForm/food_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/templates/testForm/food_add.html -------------------------------------------------------------------------------- /testForm/templates/testForm/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/templates/testForm/thanks.html -------------------------------------------------------------------------------- /testForm/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/tests.py -------------------------------------------------------------------------------- /testForm/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/urls.py -------------------------------------------------------------------------------- /testForm/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testForm/views.py -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testapp/admin.py -------------------------------------------------------------------------------- /testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testapp/apps.py -------------------------------------------------------------------------------- /testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testapp/models.py -------------------------------------------------------------------------------- /testapp/next/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/next/testviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testapp/next/testviews.py -------------------------------------------------------------------------------- /testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testapp/tests.py -------------------------------------------------------------------------------- /testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testapp/urls.py -------------------------------------------------------------------------------- /testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testapp/views.py -------------------------------------------------------------------------------- /testrestapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testrestapi/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/admin.py -------------------------------------------------------------------------------- /testrestapi/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/apps.py -------------------------------------------------------------------------------- /testrestapi/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/migrations/0001_initial.py -------------------------------------------------------------------------------- /testrestapi/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testrestapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/models.py -------------------------------------------------------------------------------- /testrestapi/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/serializers.py -------------------------------------------------------------------------------- /testrestapi/static/rest_framework_docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/static/rest_framework_docs/css/style.css -------------------------------------------------------------------------------- /testrestapi/templates/rest_framework_docs/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/templates/rest_framework_docs/docs.html -------------------------------------------------------------------------------- /testrestapi/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/tests.py -------------------------------------------------------------------------------- /testrestapi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/urls.py -------------------------------------------------------------------------------- /testrestapi/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi/views.py -------------------------------------------------------------------------------- /testrestapi1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testrestapi1/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/admin.py -------------------------------------------------------------------------------- /testrestapi1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/apps.py -------------------------------------------------------------------------------- /testrestapi1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/migrations/0001_initial.py -------------------------------------------------------------------------------- /testrestapi1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testrestapi1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/models.py -------------------------------------------------------------------------------- /testrestapi1/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/serializer.py -------------------------------------------------------------------------------- /testrestapi1/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/tests.py -------------------------------------------------------------------------------- /testrestapi1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/urls.py -------------------------------------------------------------------------------- /testrestapi1/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LABELNET/django-mysite-frist/HEAD/testrestapi1/views.py --------------------------------------------------------------------------------