All Projects → arneb → Django Messages

arneb / Django Messages

Licence: bsd-3-clause
A Django application handling private messages between users.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Messages

Django Machina
A Django forum engine for building powerful community driven websites.
Stars: ✭ 454 (-11.33%)
Mutual labels:  django, messages
Django Pagedown
A django app that allows the easy addition of Stack Overflow's "PageDown" markdown editor to a django form field, whether in a custom app or the Django Admin
Stars: ✭ 500 (-2.34%)
Mutual labels:  django
Knboard
Kanban boards with React & Django.
Stars: ✭ 470 (-8.2%)
Mutual labels:  django
Minimal Django
A lightweight Django project - because Django can be nearly as simple as a microframework
Stars: ✭ 490 (-4.3%)
Mutual labels:  django
Gofamily
🔥 大厂 BAT 面试高频知识点,后端技术体系。包含了 C GO Python, 网络,Redis ,MySQL ,消息队列 ,高并发,微服务,缓存,操作系统,算法,LeetCode 刷题等知识
Stars: ✭ 474 (-7.42%)
Mutual labels:  messages
Dj Rest Auth
Authentication for Django Rest Framework
Stars: ✭ 491 (-4.1%)
Mutual labels:  django
Yasql
基于Python开发的MySQL WEB版本的工单审核执行和SQL查询平台
Stars: ✭ 463 (-9.57%)
Mutual labels:  django
Toastnotifications
Toast notifications for WPF allows you to create and display rich notifications in WPF applications. It's highly configurable with set of built-in options like positions, behaviours, themes and many others. It's extendable, it gives you possibility to create custom and interactive notifications in simply manner.
Stars: ✭ 507 (-0.98%)
Mutual labels:  messages
Lazy Balancer
nginx for balancer web ui
Stars: ✭ 499 (-2.54%)
Mutual labels:  django
Django Dotenv
Loads environment variables from .env
Stars: ✭ 481 (-6.05%)
Mutual labels:  django
Mangum
AWS Lambda & API Gateway support for ASGI
Stars: ✭ 475 (-7.23%)
Mutual labels:  django
Django Ordered Model
Get your Django models in order
Stars: ✭ 476 (-7.03%)
Mutual labels:  django
Vue Django
@Django integrated with a full-featured @Webpack + (@vuejs / vue-loader) setup with hot reload, linting, testing & css extraction.
Stars: ✭ 495 (-3.32%)
Mutual labels:  django
Django Dbbackup
Management commands to help backup and restore your project database and media files
Stars: ✭ 471 (-8.01%)
Mutual labels:  django
Ops
基于centos6+python3.6+django2+ansible2.4+celery4.2 运维管理系统,目前实现功能:用户和用户组管理、资产管理、集成ansible2.4、简易堡垒机(主机分配支持rdp以及vnc、用户分配、文件上传下载、配置禁用命令清单、操作录像回放功能)、CI/CD(支持git仓库和svn仓库)、数据库管理(一部分)、celery任务编排、知识库及文件共享
Stars: ✭ 502 (-1.95%)
Mutual labels:  django
Django Role Permissions
A django app for role based permissions.
Stars: ✭ 465 (-9.18%)
Mutual labels:  django
Django Redis Sessions
Session backend for Django that stores sessions in a Redis database
Stars: ✭ 478 (-6.64%)
Mutual labels:  django
Django Cheat Sheet
A cheat sheet for creating web apps with the Django framework.
Stars: ✭ 490 (-4.3%)
Mutual labels:  django
Activflow
Generic, light-weight & extensible Workflow Engine for agile automation of Business Processes | Django, Python
Stars: ✭ 510 (-0.39%)
Mutual labels:  django
Django Js Reverse
Javascript url handling for Django that doesn't hurt.
Stars: ✭ 502 (-1.95%)
Mutual labels:  django

========================================== A user-to-user messaging system for Django

Django-messages enables your users to send private messages to each other. It provides a basic set of functionality that you would expect from such a system. Every user has an Inbox, an Outbox and a Trash. Messages can be composed and there is an easy, url-based approach to preloading the compose-form with the recipient-user, which makes it extremly easy to put "send xyz a message" links on a profile-page.

Currently django-messages comes with over 20 translations, see them here: https://github.com/arneb/django-messages/tree/master/django_messages/locale

Versions

+--------+-------------------------------------------------------------------+ | master | compatible with Django 1.11 - 2.2 | +--------+-------------------------------------------------------------------+ | 0.6.x | compatible with Django 1.7 - 1.11 and with Python 3 | +--------+-------------------------------------------------------------------+ | 0.5.x | compatible with Django 1.4, 1.5, 1.6 and 1.7; if you are | | | upgrading from 0.4.x to trunk please read the UPGRADING docs. | +--------+-------------------------------------------------------------------+ | 0.4.x | compatible with Django 1.1 (may work with Django 1.0/1.2), no | | | longer maintained | +--------+-------------------------------------------------------------------+ | 0.3 | compatible with Django 1.0, no longer maintained | +--------+-------------------------------------------------------------------+

Documentation

The documentation is contained in the /docs/ directory and can be build with sphinx. A HTML version of the documentation is available at: http://django-messages.readthedocs.org

Install

Download the tar archive, unpack and run python setup.py install or checkout the trunk and put the django_messages folder on your PYTHONPATH. Released versions of django-messages are also available on pypi and can be installed with easy_install or pip.

Usage

Add django_messages to your INSTALLED_APPS setting and add an include('django_messages.urls') at any point in your url-conf.

The app includes some default templates, which are pretty simple. They extend a template called base.html and only emit stuff in the block content and block sidebar. You may want to use your own templates, but the included ones are good enough for testing and getting started.

Dependencies

Django-messages has no external dependencies except for django. However, if pinax-notifications and/or django-mailer are found, it will make use of them. Note: as of r65 django-messages will only use pinax-notifications if 'pinax.notifications' is also added to the INSTALLED_APPS setting. This has been done to make situations possible where notification is on pythonpath but should not be used, or where notification is another python package, such as django-notification which has the same name.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].