Skip to main content

The django application, that allows attach title, keywords and description meta tags for site's pages.

Project description

https://secure.travis-ci.org/whitespy/django-simple-metatags.svg https://badge.fury.io/py/django-simple-metatags.svg

The django application, that allows attach title, keywords and description meta tags for site’s pages.

Installation

$ pip install django-simple-metatags

Configuration

  1. Add ‘metatags’ to your INSTALLED_APPS:

INSTALLED_APPS = (
    # ...
    'metatags',
)
  1. Run migrate to create the application table:

$ python manage.py migrate metatags

3. Include meta tags for model, add MetaTagInline in inlines of your ModelAdmin subclass (also django-simple-metatags has the own ModelAdmin class, that allows add meta tags for URL-paths):

from metatags.admin import MetaTagInline

class CustomModelAdmin(admin.ModelAdmin):
    # ...
    inlines = (MetaTagInline,)

4. Load meta_tags template library and create meta_tags template block in HTML head section. Add include_meta_tags template tag in meta_tags block:

{% load meta_tags %}
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    {% block meta_tags %}
        {% include_meta_tags %}
    {% endblock %}
</head>

Arguments of include_meta_tags template tag

All arguments are optional.

model_instance - Model instance, to get meta tags. None by default.

model_title_field - Model’s field, that can be used as title if meta tags title field is blank. ‘title’ by default.

default_title - Title of page by default. Used with URL-path. No sense, when the model_instance argument was passed. ‘’ by default.

default_keywords - Keywords by default.

default_description - Description by default.

Management command

syncmetatags - adds translation fields, when the django-modeltranslation application is used.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-simple-metatags-1.0.1.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

django_simple_metatags-1.0.1-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file django-simple-metatags-1.0.1.tar.gz.

File metadata

File hashes

Hashes for django-simple-metatags-1.0.1.tar.gz
Algorithm Hash digest
SHA256 abf213ea264105d86b073f0bffd2720912bdc5544e14b0f07ab33ec63c6fbf50
MD5 34f5a5d625059902355c35128adde841
BLAKE2b-256 710e144f81cdd2961517f140582c5e4a917b8425dfd3128fba844492840b5d26

See more details on using hashes here.

File details

Details for the file django_simple_metatags-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_simple_metatags-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 072d82982ea4c9bfc6b0147cd623799831c9f4eef76f7e99e99d162b9d11fbe7
MD5 af6353294d31398c90ac6a4f0b1d3318
BLAKE2b-256 e87be8ee465b9152ab23e7b4cb873f46c570dbf8c007ba050f6d22274b1d3c70

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page