Skip to content

Latest commit

 

History

History
88 lines (59 loc) · 1.94 KB

README.rst

File metadata and controls

88 lines (59 loc) · 1.94 KB

rapidsms-groups

rapidsms-groups integrates with the RapidSMS framework and allows you to define groups of Contacts.

Getting Started

To add rapidsms-groups to an existing RapidSMS project, add it and its dependencies to your installed apps:

INSTALLED_APPS = [
    ...
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'rapidsms',
    'rapidsms.contrib.messagelog',
    'groups',
    'pagination',
    'sorter',
    ...
]

In addition to the default middleware classes, be sure to include pagination middleware:

MIDDLEWARE_CLASSES = [
    ...
    'pagination.middleware.PaginationMiddleware',
    ...
]

Configure django_sorter:

SORTER_ALLOWED_CRITERIA = {
    'sort_contacts': ['id', 'name', 'email', 'phone'],
    'sort_groups': ['id', 'name', 'count'],
}

Add a tuple of allowed `country codes<http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2>`_ for phone number normalization:

COUNTRY_CODES = ('US',)

Add contacts URLs to your urlconf:

urlpatterns += patterns('',
    (r'^groups/', include('groups.urls')),
)

Finally, run syncdb or migrate:

python manage.py migrate groups

Running the Tests

You can run the tests via:

python runtests.py

If you would like to run specific test(s), specify them as arguments to the command:

python runtests.py groups.GroupViewTest.test_editable_views

License

rapidsms-groups is released under the BSD License. See the LICENSE file for more details.

Contributing

If you think you've found a bug or are interested in contributing to this project check out rapidsms-groups on Github.

Development sponsored by Caktus Consulting Group, LLC.