django-metatags

A simple, pluggable app for attaching meta tags to objects with their own views
Download

django-metatags Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL
  • Publisher Name:
  • Chuck Harmston
  • Publisher web site:
  • http://chuckharmston.com

django-metatags Tags


django-metatags Description

A simple, pluggable app for attaching meta tags to objects with their own views django-metatags is a simple, pluggable app for attaching meta tags to objects with their own views.InstallationAs it is available on the Python Package Index, you can install django-metatags using your favorite package manager:pip install django-metatagseasy_install django-metatagsYou can also install directly from the git master branch using the pip package manager:pip install git+http://github.com/cpharmston/django-metatags.git#egg=metatagsOr you can download django-metatags and install locally:setup.py installUsageTo install, add django-metatags to your INSTALLED_APPS in your Django settings module:INSTALLED_APPS = Run ./manage.py syncdb to create the requisite database tables. Then, to any ModelAdmin that you'd like the Meta Tag inline to appear, simply add it:from django.contrib import adminfrom metatags.admin import MetaTagInlinefrom someapp.models import SomeModelclass SomeModelAdmin(admin.ModelAdmin): inlines = admin.site.register(SomeModel, SomeModelAdmin)For additional user experience enhancements to the inline, copy or symlink metatags/media/metatags to your MEDIA_ROOT. Requirements: · Python · Django


django-metatags Related Software