{ "info": { "author": "Pupkov Semyon", "author_email": "semen.pupkov@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# Django Clever Pages\n\n[](http://badge.fury.io/py/django-clever-pages)\n[](https://travis-ci.org/artofhuman/django-clever-pages)\n[](https://coveralls.io/r/artofhuman/django-clever-pages)\n[](https://crate.io/packages/django-clever-pages)\n\nSimple application that allows you to organize pages in a tree\n\n# Idea\n\nIs located at the top level home page. Other pages are linked to the home page. Thus obtaining a tree. On the basis of field slug and parents pages generated path when saving. In the view gets page by unique path from the database.\n\n# Features\n\n* Organize pages in tree structure\n* Includes CKEditor\n* Auto build path by page slug\n* Generate page url, include all parents\n* Drag-n-dtop interface in admin\n* Include Search indices for haystack (need haystack >= 2.x). Sphinx in plans\n* Include meta tags via django-meta\n\n## Instalation\n\n## From Pypi\n\n pip install django-clever-pages \n\n## From github\n\n pip install git+git://github.com/artofhuman/django-clever-pages\n\nAdd this line to your settings.py\n\n~~~~ Python\n INSTALLED_APPS = (\n 'feincms',\n 'meta',\n 'ckeditor',\n 'page',\n )\n~~~~\n\nAdd it to end urls.py\n~~~~ Python\n urlpatterns = patterns('',\n ('', include('page.urls'))\n )\n~~~~\nYou can define more templates in settings.py\n~~~~ Python\n PAGE_TEMPLATES = (\n ('contacts', u'Contacts'),\n )\n~~~~\n\nMeta tags in base.html\n~~~~ Django\n{% load meta %}\n
\n