Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/20tab/twentytab-seo
https://github.com/20tab/twentytab-seo
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/20tab/twentytab-seo
- Owner: 20tab
- License: mit
- Created: 2014-02-13T16:51:24.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-13T17:01:05.000Z (almost 11 years ago)
- Last Synced: 2024-10-15T23:48:24.651Z (2 months ago)
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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')),
...
)```