Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geonode/geonode-user-messages
Fork of django-user-messages compatible with django 1.6
https://github.com/geonode/geonode-user-messages
Last synced: about 1 month ago
JSON representation
Fork of django-user-messages compatible with django 1.6
- Host: GitHub
- URL: https://github.com/geonode/geonode-user-messages
- Owner: GeoNode
- Created: 2014-05-19T08:04:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-30T14:02:53.000Z (7 months ago)
- Last Synced: 2024-11-08T23:52:15.654Z (about 1 month ago)
- Language: Python
- Size: 239 KB
- Stars: 2
- Watchers: 20
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
User messaging
==============``user-messages`` is an application for allowing users of your Django site to
send messages to each other.Quick Start
-----------Include ``user-messages`` in your requirements file and add
``"user_messages"`` to your INSTALLED APPS setting.Once you have the ``user-messages`` installed, hook up the URLs::
urlpatterns = patterns("",
# some cool URLs
(r"^messages/", include("user_messages.urls")),
# some other cool URLs
)Now all you need to do is wire up some templates.