django-seo-admin/README.rst
Django SEO Admin
Django SEO Admin is the app for apply SEO on your websites with Django.
Installing
pip install django-seo-admin
Quick start
-
Include the app 'seo' to INSTALLED_APP in the settings.py
-
Apply migration with makemigrations and migrate for registry the model of django-seo-admin
-
In the template::
{% load tag_seo_admin %}
{% get_metadata %}
Django Seo Admin
-
Sign in to Admin of Django and load record to the model of django-seo-admin.
Fields are:
- Type: Type tag for example: Meta and title.
- Is_property: If tag contains property "property", else contains property "name"
- Field: Value of property. For example, the property name contains value "keywords"
- Content: Contains of property. For example, for keywords contains values "django, web, framework"
-
Run server