Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/20tab/twentytab-seo


https://github.com/20tab/twentytab-seo

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

        

twentytab-seo
=============

A django app that allows to manage the meta contents of pages. He needs twentytab-tree. It also allows to translate information related to pages

## Installation

Use the following command: pip install twentytab-seo

## Configuration

- settings.py

```py
INSTALLED_APPS = {
...,
'mptt',
'modeltranslation',
'twentytab',
'tree',
'seo',
...
}
```

- urls.py

```py
urlpatterns = patterns('',
... ,
(r'', include('tree.urls')),
...
)

```