Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/claudiob/adminlettuce

Displays lettuce features as documentation in Django admin
https://github.com/claudiob/adminlettuce

Last synced: 17 days ago
JSON representation

Displays lettuce features as documentation in Django admin

Awesome Lists containing this project

README

        

# Admin documentation for lettuce-generated integration tests.

This module integrates lettuce (http://www.lettuce.it) support for Django by
printing out the content of the features and scenarios to the Django admin
interface.

The goal is to make the final user aware of the specifications and requirements
of the application without having to browse the source code.

To install this module in a Django application with lettuce features:

* install the module (for instance, using pip)
* add 'adminlettuce' to the INSTALLED_APPS in settings.py
* add a route to 'adminlettuce' in urls.py, for instance:
(r'^admin/features/', include('adminlettuce.urls')),