Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/rangertaha/django-actions
- Owner: rangertaha
- License: mit
- Created: 2014-04-15T15:57:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-19T14:19:44.000Z (over 10 years ago)
- Last Synced: 2023-08-24T18:37:37.888Z (over 1 year ago)
- Language: Python
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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