Skip to content

DrMartiner/django-contenttype-tag

Repository files navigation

django-contenttype-tag

It's easy app for get content type of instance at templates

=====
How to use
  1. Add 'generic_ct_tag' at INSTALLED_APPS:

    INSTALLED_APPS = (
          ...
          'generic_ct_tag',
    )
  2. At template:

    {% load generic_ct %}
    
    {% content_type obj as ct %}
    {{ ct.app_label }}
    {{ ct.model }}
    
    {# or #}
    
    {% content_type obj %} {# The resulr: <app_label>.<model> #}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published