# -*- coding: utf-8 -*- from django import template from django.template import Library register = template.Library() from django.db.models import get_models def moduller(): html = "" return html register.simple_tag(moduller)