All Projects → slyapustin → Django Classified

slyapustin / Django Classified

Licence: mit
Django Classified

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Django Classified

Paperweekly forum
paperweekly's forum
Stars: ✭ 118 (-3.28%)
Mutual labels:  django
Django Subadmin
A special kind of ModelAdmin that allows it to be nested within another ModelAdmin
Stars: ✭ 120 (-1.64%)
Mutual labels:  django
Ttv aderaser
TTV AdEraser aims to remove livestream ads as well as add some useful features to our favourite streaming site.
Stars: ✭ 122 (+0%)
Mutual labels:  ads
Sarenka
OSINT tool - gets data from services like shodan, censys etc. in one app
Stars: ✭ 120 (-1.64%)
Mutual labels:  django
Website
Code for the Outreachy website, based on Python, Django, and Bootstrap.
Stars: ✭ 120 (-1.64%)
Mutual labels:  django
Django Tinymce4 Lite
TinyMCE 4 editor widget for Django
Stars: ✭ 121 (-0.82%)
Mutual labels:  django
Hosts Blocklists
Automatically updated, moderated and optimized lists for blocking ads, trackers, malware and other garbage
Stars: ✭ 1,749 (+1333.61%)
Mutual labels:  ads
Lpoj
An open source online judge system base on Django REST framework and Vue.js !
Stars: ✭ 122 (+0%)
Mutual labels:  django
Ralph
Ralph is the CMDB / Asset Management system for data center and back office hardware.
Stars: ✭ 1,701 (+1294.26%)
Mutual labels:  django
Wooey
A Django app that creates automatic web UIs for Python scripts.
Stars: ✭ 1,680 (+1277.05%)
Mutual labels:  django
Metarec
PyTorch Implementations For A Series Of Deep Learning-Based Recommendation Models (IN PROGRESS)
Stars: ✭ 120 (-1.64%)
Mutual labels:  django
W3develops
The w3develops.org open source codebase - Learn, build, and meetup with other developers on DISCORD https://discord.gg/WphGvTT and YOUTUBE http://bit.ly/codingyt
Stars: ✭ 120 (-1.64%)
Mutual labels:  django
Django Macros Url
Django Macros URL. Routing must be simple as possible
Stars: ✭ 121 (-0.82%)
Mutual labels:  django
Django Hardcopy
Render PDFs from HTML in Python/Django using Headless Chrome
Stars: ✭ 119 (-2.46%)
Mutual labels:  django
Sigir2020 peterrec
Parameter-Efficient Transfer from Sequential Behaviors for User Modeling and Recommendation
Stars: ✭ 121 (-0.82%)
Mutual labels:  ads
Django Admin Json Editor
Adds json-editor for JSONField in Django Administration
Stars: ✭ 118 (-3.28%)
Mutual labels:  django
Cmdb
资产管理、主机管理、批量执行命令|脚本、流量图、webssh 本项目已停止开发!因长时间未对代码进行维护,可能会造成项目在不同环境上无法部署、运行BUG等问题,请知晓!项目仅供参考!
Stars: ✭ 121 (-0.82%)
Mutual labels:  django
Water Monitoring System
Water Monitoring System is an IOT based Liquid Level Monitoring system that has mechanisms to keep the user alerted in case of liquid overflow or when tank depletes.
Stars: ✭ 122 (+0%)
Mutual labels:  django
Facebook audience network
Flutter Facebook Audience Network
Stars: ✭ 122 (+0%)
Mutual labels:  ads
Shuup
E-Commerce Platform
Stars: ✭ 1,790 (+1367.21%)
Mutual labels:  django

Simple Django Classified Advertising App

Build Status

Features

  • Item groups, categories and areas (for ex. Cities ot Locations)
  • Image
  • Search ability
  • SEO optimization
    • SEO-friendly urls
    • generating META description and meta keywords
    • sitemap.xml
    • robots.txt
    • RSS feed
    • Google Analytics integration
    • Open Graph protocol support
  • Caching
  • Translation

Requirements

  • Python >=3.6
  • Django >=2.0

Design

Demo project

Demo project with user registration (via Email/Facebook) available here.

Installation

  • Install app pip install django-classified
  • Add django_classified to the INSTALLED_APPS:
INSTALLED_APPS = [
    # Django applications required by Django Classified
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.humanize',
    'django.contrib.messages',
    'django.contrib.sessions',
    'django.contrib.sitemaps',
    'django.contrib.sites',
    'django.contrib.staticfiles',
    
     # External applications required by Django Classified
    'bootstrapform',
    'sorl.thumbnail',
    
    # Django Classified
    'django_classified',
]
  • Add url(r'', include('django_classified.urls', namespace='django_classified')), to the project urls.py file:
urlpatterns = patterns(
    url(r'', include('django_classified.urls', namespace='django_classified'),
)
  • Add 'django_classified.context_processors.common_values' to the settings TEMPLATES context_processors list:
TEMPLATES[0]['OPTIONS']['context_processors'].append('django_classified.context_processors.common_values')

Customization:

You can provide additional customization in settings.py

  • DCF_SITE_NAME - Site title
  • DCF_SITE_DESCRIPTION - Site description
  • DCF_ITEM_PER_USER_LIMIT - Max Items allowed per user
  • DCF_SITEMAP_LIMIT - Sitemap items limit
  • DCF_RSS_LIMIT - RSS feed items limit
  • DCF_RELATED_LIMIT - Number of related items displayed
  • DCF_ITEM_PER_PAGE - Number of items per page
  • DCF_LOGIN_TO_CONTACT - Hide contact information for unauthorized requests
  • DCF_DISPLAY_EMPTY_GROUPS - Display groups without items in the groups list

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].