├── .gitignore ├── README.md └── backbone_example ├── __init__.py ├── local_settings.py ├── manage.py ├── requirements.txt ├── settings.py ├── static ├── css │ └── style.css └── js │ ├── ICanHaz.min.js │ ├── app.js │ ├── backbone-min.js │ ├── backbone-tastypie.js │ └── underscore-min.js ├── templates ├── detailApp.mustache ├── index.html ├── listApp.mustache └── tweetTemplate.mustache ├── tweets ├── __init__.py ├── api │ ├── __init__.py │ ├── api.py │ └── resources.py ├── models.py ├── templatetags │ ├── __init__.py │ ├── mustache.py │ ├── straight_include.py │ └── verbatim.py ├── tests │ ├── __init__.py │ └── gravatar.py ├── urls.py └── views.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/README.md -------------------------------------------------------------------------------- /backbone_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backbone_example/local_settings.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backbone_example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/manage.py -------------------------------------------------------------------------------- /backbone_example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/requirements.txt -------------------------------------------------------------------------------- /backbone_example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/settings.py -------------------------------------------------------------------------------- /backbone_example/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/static/css/style.css -------------------------------------------------------------------------------- /backbone_example/static/js/ICanHaz.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/static/js/ICanHaz.min.js -------------------------------------------------------------------------------- /backbone_example/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/static/js/app.js -------------------------------------------------------------------------------- /backbone_example/static/js/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/static/js/backbone-min.js -------------------------------------------------------------------------------- /backbone_example/static/js/backbone-tastypie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/static/js/backbone-tastypie.js -------------------------------------------------------------------------------- /backbone_example/static/js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/static/js/underscore-min.js -------------------------------------------------------------------------------- /backbone_example/templates/detailApp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/templates/detailApp.mustache -------------------------------------------------------------------------------- /backbone_example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/templates/index.html -------------------------------------------------------------------------------- /backbone_example/templates/listApp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/templates/listApp.mustache -------------------------------------------------------------------------------- /backbone_example/templates/tweetTemplate.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/templates/tweetTemplate.mustache -------------------------------------------------------------------------------- /backbone_example/tweets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backbone_example/tweets/api/__init__.py: -------------------------------------------------------------------------------- 1 | from api import v1 2 | -------------------------------------------------------------------------------- /backbone_example/tweets/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/api/api.py -------------------------------------------------------------------------------- /backbone_example/tweets/api/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/api/resources.py -------------------------------------------------------------------------------- /backbone_example/tweets/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/models.py -------------------------------------------------------------------------------- /backbone_example/tweets/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backbone_example/tweets/templatetags/mustache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/templatetags/mustache.py -------------------------------------------------------------------------------- /backbone_example/tweets/templatetags/straight_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/templatetags/straight_include.py -------------------------------------------------------------------------------- /backbone_example/tweets/templatetags/verbatim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/templatetags/verbatim.py -------------------------------------------------------------------------------- /backbone_example/tweets/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from gravatar import * 2 | -------------------------------------------------------------------------------- /backbone_example/tweets/tests/gravatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/tests/gravatar.py -------------------------------------------------------------------------------- /backbone_example/tweets/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/urls.py -------------------------------------------------------------------------------- /backbone_example/tweets/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/tweets/views.py -------------------------------------------------------------------------------- /backbone_example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohde/django-backbone-example/HEAD/backbone_example/urls.py --------------------------------------------------------------------------------