Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rangertaha/django-actions

A simple Django app template tag for tagging actions.
https://github.com/rangertaha/django-actions

Last synced: about 1 month ago
JSON representation

A simple Django app template tag for tagging actions.

Awesome Lists containing this project

README

        

=====
Django Actions
=====

A simple Django app template tag for tagging actions.

Quick start
-----------

1. Add "actions" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = (
...
'actions',
)

2. Include the actions URLconf in your project urls.py like this::

url(r'^actions/', include('actions.urls')),

3. Run `python manage.py syncdb` to create the actions models.

4. Start the development server and visit http://127.0.0.1:8000/admin/
to create a action (you'll need the Admin app enabled).

5. Visit http://127.0.0.1:8000/actions/ to participate in the action.

TODO
----

* Write tests