Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
.. image:: https://badge.fury.io/py/django-djeddit.svg :target: https://badge.fury.io/py/django-djeddit
.. image:: https://travis-ci.org/EatEmAll/django-djeddit.svg?branch=master :target: https://travis-ci.org/EatEmAll/django-djeddit
.. image:: https://codecov.io/gh/EatEmAll/django-djeddit/branch/master/graph/badge.svg :target: https://codecov.io/gh/EatEmAll/django-djeddit
.. image:: https://img.shields.io/badge/python-2.7%2C%203.4%2C%203.5%2C%203.6-blue.svg :target: https://travis-ci.org/EatEmAll/django-djeddit
.. image:: https://img.shields.io/badge/django%20versions-1.8%2C%201.9%2C%201.10%2C%201.11%2C%202.0-blue.svg :target: https://travis-ci.org/EatEmAll/django-djeddit
Bare bones Django forum application with Reddit like features developed as a Django reusable app.
django-mptt <https://github.com/django-mptt/django-mptt>
_)Bootstrap <https://github.com/twbs/bootstrap>
_)django-registration-redux <https://github.com/macropin/django-registration>
_ is recommanded to go along with this app if you need out of the box user registration functionality.
Working demo: http://eatemall.pythonanywhere.com
Documentation: https://django-djeddit.readthedocs.io.
.. image:: https://raw.githubusercontent.com/EatEmAll/django-djeddit/master/media/Threads.jpg
.. image:: https://raw.githubusercontent.com/EatEmAll/django-djeddit/master/media/User.jpg
.. image:: https://raw.githubusercontent.com/EatEmAll/django-djeddit/master/media/Comments.jpg
The app is currently tested with Django 1.8, 1.9, 1.10 and 1.11, 2.0
Install django-djeddit::
pip install django-djeddit
Add it and its dependencies to your INSTALLED_APPS
:
.. code-block:: python
INSTALLED_APPS = [
...
'crispy_forms',
'mptt',
'djeddit',
'meta',
...
]
djeddit_settings to context_processors:
.. code-block:: python
'context_processors': [
...
'djeddit.context_processors.djeddit_settings',
...
]
jango-djeddit's URL patterns:
.. code-block:: python
urlpatterns = [
...
url(r'^', include('djeddit.urls')),
...
]
Migrate models:
.. code-block:: python
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:
.. code-block:: python
from djeddit.models import Topic
Topic.objects.create(title='Test Topic')
Dependencies:
.. _django-mptt: https://github.com/django-mptt/django-mptt .. _crispy_forms: https://github.com/django-crispy-forms/django-crispy-forms .. _django-meta: https://github.com/nephila/django-meta .. _django-ipware: https://github.com/un33k/django-ipware
Tools used in rendering this package:
cookiecutter-djangopackage
_.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _cookiecutter-djangopackage
: https://github.com/pydanny/cookiecutter-djangopackage
0.1.0 (2017-04-15) ++++++++++++++++++
0.1.5 (2017-05-26) ++++++++++++++++++
0.2 (2017-07-04) ++++++++++++++++
0.3 (2018-06-02) ++++++++++++++++
FAQs
Bare bones Django forum application with Reddit like features
We found that django-djeddit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.