{"id":21258686,"url":"https://github.com/urtzai/django-forum-app","last_synced_at":"2025-07-11T02:32:51.163Z","repository":{"id":57420163,"uuid":"84945724","full_name":"urtzai/django-forum-app","owner":"urtzai","description":"A very simple/minimalistic Django Forum app","archived":false,"fork":false,"pushed_at":"2024-03-12T09:23:22.000Z","size":141,"stargazers_count":30,"open_issues_count":2,"forks_count":17,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-23T18:17:21.744Z","etag":null,"topics":["app","django","forum","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/urtzai.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-14T12:19:54.000Z","updated_at":"2025-01-02T16:48:55.000Z","dependencies_parsed_at":"2022-09-10T11:21:27.925Z","dependency_job_id":null,"html_url":"https://github.com/urtzai/django-forum-app","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/urtzai/django-forum-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urtzai%2Fdjango-forum-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urtzai%2Fdjango-forum-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urtzai%2Fdjango-forum-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urtzai%2Fdjango-forum-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/urtzai","download_url":"https://codeload.github.com/urtzai/django-forum-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urtzai%2Fdjango-forum-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264712885,"owners_count":23652681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["app","django","forum","python"],"created_at":"2024-11-21T04:10:10.669Z","updated_at":"2025-07-11T02:32:50.821Z","avatar_url":"https://github.com/urtzai.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Django-forum-app\n================\n\n.. image:: https://api.travis-ci.org/urtzai/django-forum-app.svg?branch=master\n    :target: https://travis-ci.org/urtzai/django-forum-app\n    :alt: Travis CI\n\n.. image:: https://coveralls.io/repos/github/urtzai/django-forum-app/badge.svg?branch=master\n    :target: https://coveralls.io/github/urtzai/django-forum-app?branch=master\n    :alt: Test coverage\n\n.. image:: https://landscape.io/github/urtzai/django-forum-app/master/landscape.svg?style=flat\n    :target: https://landscape.io/github/urtzai/django-forum-app\n    :alt: Code health\n\n.. image:: https://img.shields.io/badge/python-2.7-blue.svg\n    :target: https://badge.fury.io/py/django-forum-app\n    :alt: Latest Python 2 version\n\n.. image:: https://img.shields.io/badge/python-3.5-blue.svg\n    :target: https://badge.fury.io/py/django-forum-app\n    :alt: Latest Python 3 version\n\n.. image:: https://badge.fury.io/py/django-forum-app.svg\n    :target: https://badge.fury.io/py/django-forum-app\n    :alt: Latest PyPI version\n\n.. image:: https://requires.io/github/urtzai/django-forum-app/requirements.svg?branch=master\n    :target: https://requires.io/github/urtzai/django-forum-app/requirements?branch=master\n    :alt: Package requirements\n    \nA very simple/minimalistic Django Forum app based on yoanisgil's `Django simple forum \u003chttps://github.com/yoanisgil/django-simple-forum\u003e`_ project.\n\nExample\n-------\n\nA `production example \u003chttp://gamerauntsia.eus/foroa/\u003e`_ of this forum app courtesy of Game Erauntsia, basque gamer community\n\nDependencies\n------------\n\n- Django \u003e= 1.10.0\n- django-photologue \u003e= 3.6\n- django-tinymce \u003e= 2.6.0\n\nInstallation\n------------\n\nClone this repository and add it to your ``INSTALLED_APPS`` list:\n\n.. code-block:: python\n\n    INSTALLED_APPS = [\n        'django_forum_app',\n    ]\n\nThen run migrations:\n\n.. code-block::\n\n    ./manage.py migrate django_forum_app\n\nFinally, add this in ``urls.py``:\n\n.. code-block:: django\n\n    url(r'^forum/', include('django_forum_app.urls')),\n\nSettings\n--------\n\nTher are some option you could overrite to change the default behaviour of the forum:\n\n``FORUM_SUBJECT``\n    Subject for email notifications\n\n    **Default:** ``FORUM``\n\n``POSTS_PER_PAGE``\n    Number of posts shown per page.\n\n    **Default:** ``10``\n\n``DJANGO_FORUM_APP_FILTER_PROFANE_WORDS``\n    Attribute to filter profane words. Values should be ``True | False``\n\n    **Default:** ``True``\n\n``TINYMCE_DEFAULT_CONFIG``\n    Overriding this option you can change the tinymce editor behaviour.\n\n    **Default:**\n\n    .. code-block:: python\n\n        TINYMCE_DEFAULT_CONFIG = {\n            'language': 'en',\n            'theme': 'modern',\n            'height': 600,\n            'plugins': [\n                'advlist autolink lists link image charmap print preview anchor',\n                'searchreplace visualblocks code fullscreen',\n                'insertdatetime media table contextmenu paste',\n            ],\n            'toolbar': 'styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image media | code preview',\n            'menubar': False,\n            'media_alt_source': False,\n            'media_poster': False,\n            'media_dimensions': False,\n        }\n\nSupport\n-------\n\nShould you experience any issues do not hesistate to post an issue or contribute in this project pulling requests.\n\nTravis CI status\n----------------\n\nWe use Travis to check that the unit test suite is working against various combinations of Python, Django, etc...\n`Click here for the full report \u003chttp://travis-ci.org/#!/urtzai/django-forum-app\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furtzai%2Fdjango-forum-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Furtzai%2Fdjango-forum-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furtzai%2Fdjango-forum-app/lists"}