Metadata-Version: 2.1
Name: django-classified
Version: 0.7
Summary: Django classified ads
Home-page: https://github.com/inoks/django-classified
Author: Sergey Lyapustin
Author-email: inoks@mail.ru
License: UNKNOWN
Description: # Django Classified Advertising Application
        
        [![Build Status](https://travis-ci.org/inoks/dcf.svg?branch=master)](https://travis-ci.org/inoks/dcf)
        
        ## Features
        
        * User registration
         * via social networks (Facebook as example)
        * Item groups and categories
        * Image
            * upload multiple images per item
            * generating preview (via [sorl-thumbnail](https://github.com/mariocesar/sorl-thumbnail))
            * display using [Lightbox JS](http://lokeshdhakar.com/projects/lightbox2/) library
        * Search ability
        * SEO optimisation
            * SEO-friendly urls 
            * generating META description and meta keywords
            * sitemap.xml
            * robots.txt
            * RSS feed
            * Google Analytics integration
            * [Open Graph protocol](http://ogp.me/) support
        * Caching
        * Translation
            * English
            * Russian 
            * French (thanks to [Teolemon](https://github.com/teolemon))
            * Turkish (thanks to [Mirat Can Bayrak](https://github.com/miratcan))
            * Help translate to other languages at [Transifex](https://www.transifex.com/inoks/dcf/)
        
        ## Requirements
         
        * Python 2.7, 3.5, 3.6
        * Django 1.8, 1.9, 1.10, 1.11
        * [Python Social Auth - Application - Django](https://github.com/python-social-auth/social-app-django)
        
        ## Design
        
        * [Twitter Bootstrap Jumbotron](http://getbootstrap.com/examples/jumbotron-narrow/)
        
        ## Credits:
        
        * [Leveraging HTML and Django Forms: Pagination of Filtered Results](http://schinckel.net/2014/08/17/leveraging-html-and-django-forms%3A-pagination-of-filtered-results/) 
            
        ## Installation
           [Install + activate virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/)
        
        
            pip install -r requirements/base.txt
            python ./manage.py makemigrations dcf
            python ./manage.py migrate
            python ./manage.py createsuperuser
            python ./manage.py runserver
            
        Visit [Admin Page](http://localhost:8000/admin/) and create some Sections/Group
        
        ## 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
        
        ## Credits
        
         * Thanks [JetBrains](https://www.jetbrains.com) for the awesome [PyCharm](https://www.jetbrains.com/pycharm/) IDE.
         
Keywords: django classified ads
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
