https://github.com/benspaulding/django-faq
A Frequently Asked Question (FAQ) management application built with Django.
https://github.com/benspaulding/django-faq
Last synced: 2 months ago
JSON representation
A Frequently Asked Question (FAQ) management application built with Django.
- Host: GitHub
- URL: https://github.com/benspaulding/django-faq
- Owner: benspaulding
- License: bsd-3-clause
- Created: 2009-05-19T00:59:40.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2020-02-28T13:48:42.000Z (over 5 years ago)
- Last Synced: 2025-08-22T10:03:36.368Z (3 months ago)
- Language: Python
- Homepage: https://github.com/benspaulding/django-faq/
- Size: 250 KB
- Stars: 44
- Watchers: 5
- Forks: 17
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
============================================================
Frequently Asked Question (FAQ) management for Django apps
============================================================
This Django_ application provides the ability to create and manage lists of
Frequently Asked Questions (FAQ), organized by topic.
This project is still under development, though several medium-to-large
websites are currently using it in production. The plan is to get a stable
version with a full test suite and documentation out the door in the coming
months.
.. _Django: http://www.djangoproject.com/
TODO’s
------
Below are tasks that need done, features under consideration, and some
reminders for the future.
* Write tests for faq.
* Wire up testing on travis-ci.org.
* Write tests for haystack bits.
* Write general documentation, and specifically,
* The change of modified date field behavior. (Dropped null=True, now
has a date upon creation.) Write migration if necessary.
* Document removal of custom template name field on Topic. (The feature made
little sense given the various URL/view setups.) Write migration if
necessary.
* Note supported versions of Python, Django, and Haystack.
* Put documentation on readthedocs.org.
Features
~~~~~~~~
* Create a better interface for ordering questions within a topic.
* Consider if/how to add ordering to Topics. (This is complicated because of
site relations.)
* Consider making the requirement for ``django.contrib.sites`` optional.
In the future, when dropping Django 1.2 support
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Update to class-based generic views
* Move from Question.save() to model validation?