├── LICENSE ├── README.md ├── angular-django-rest-resource.js ├── bower.json └── test ├── django_project ├── __init__.py ├── manage.py ├── settings.py ├── test_rest │ ├── __init__.py │ ├── admin.py │ ├── fixtures │ │ └── initial_data.json │ ├── models.py │ ├── serializers.py │ ├── static │ │ └── index.html │ ├── tests.py │ └── views.py ├── urls.py └── wsgi.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/README.md -------------------------------------------------------------------------------- /angular-django-rest-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/angular-django-rest-resource.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/bower.json -------------------------------------------------------------------------------- /test/django_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/django_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/manage.py -------------------------------------------------------------------------------- /test/django_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/settings.py -------------------------------------------------------------------------------- /test/django_project/test_rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/django_project/test_rest/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/test_rest/admin.py -------------------------------------------------------------------------------- /test/django_project/test_rest/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/test_rest/fixtures/initial_data.json -------------------------------------------------------------------------------- /test/django_project/test_rest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/test_rest/models.py -------------------------------------------------------------------------------- /test/django_project/test_rest/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/test_rest/serializers.py -------------------------------------------------------------------------------- /test/django_project/test_rest/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/test_rest/static/index.html -------------------------------------------------------------------------------- /test/django_project/test_rest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/test_rest/tests.py -------------------------------------------------------------------------------- /test/django_project/test_rest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/test_rest/views.py -------------------------------------------------------------------------------- /test/django_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/urls.py -------------------------------------------------------------------------------- /test/django_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/django_project/wsgi.py -------------------------------------------------------------------------------- /test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacklocus/angular-django-rest-resource/HEAD/test/requirements.txt --------------------------------------------------------------------------------