Skip to main content

Bare bones Django forum application with Reddit like features

Project description

https://badge.fury.io/py/django-djeddit.svg https://travis-ci.org/EatEmAll/django-djeddit.svg?branch=master https://codecov.io/gh/EatEmAll/django-djeddit/branch/master/graph/badge.svg

Bare bones Django forum application with Reddit like features

Documentation

The full documentation is at https://django-djeddit.readthedocs.io.

Quickstart

Install django-djeddit:

pip install django-djeddit

Add it and its dependencies to your INSTALLED_APPS:

INSTALLED_APPS = [
    ...
    'crispy_forms',
    'mptt',
    'djeddit',
    ...
    ]

djeddit_settings to context_processors:

'context_processors': [
    ...
    'djeddit.context_processors.djeddit_settings',
    ...
]

jango-djeddit’s URL patterns:

urlpatterns = [
    ...
    url(r'^', include('djeddit.urls')),
    ...
]

Migrate models:

python manage.py migrate djeddit

Create a topic:

You can use New Topic dialog in /topics page if you’re logged in as a superuser or you can create one in a python console:

from djeddit.models import Topic
Topic.objects.create(title='Test Topic')

Run the app and go to /topics page.

Features

  • TODO

Credits

Dependencies:

Tools used in rendering this package:

History

0.1.0 (2017-04-15)

  • First release on PyPI.

0.1.1 (2017-05-12)

  • Added tests for models, forms, views

  • Urls that include topic titles with spaces in them don’t work // fixed

  • Competability fixes for Django 1.9 and 1.8 and Python 2.7

0.1.2 (2017-05-19)

  • Updated documentation

  • client side fixes for added compatibility with mobile screen sizes

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-djeddit-0.1.3.win-amd64.zip (992.9 kB view hashes)

Uploaded Source

Built Distribution

django_djeddit-0.1.3-py2.py3-none-any.whl (967.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page