Hi Mike, excellent answer, thanks. Look, I followed this example:
http://www.djangrrl.com/view/custom-template-tags-in-django/
But my problem is that don't displays list categories, but neither I get
error. I copied exactly that appears in that article, but I don't have good
results.
Can you help me, please??!!

On Tue, Aug 25, 2009 at 4:28 PM, Mike Ramirez <gufym...@gmail.com> wrote:

> On Tuesday 25 August 2009 12:56:12 pm Sandra Django wrote:
> > Hi friends, I'm trying to custom the index.html of Django. For that, I'm
> > writing a custom template tag (categories.py). This module should display
> a
> > list, but don't display anything. Why? I'll describe that I did because
> if
> > you can you explain me what is the problem, ok?
> > 1) I created "templatetags" folder at the same level of model.py, inside
> my
> > app
> > 2) "templatetags" folder has inside __init___.py (it's empty), and
> > categories.py
> > 3) In categories.py I wrote:
> >        from django.template import Library
> >        from myproject.app.models import Category
> >
> >        register = Library()
> >
> >         def nav_categorylist(request):
> >             categories = Category.objects.all().order_by('name')[:3]
> >             return {'categories': categories}
> >
> >             register.inclusion_tag('admin/index.html')(nav_categorylist)
> > 4) "index.html" is in the path: myproject/templates/admin/ index.html
> > 5) In index.html I put this:
> >     {% load categories %}
> >     {% for cat in categories %}
> >           {{ cat.name }}
> >     {% endfor %}
> > 6) In INSTALLED_APP I put ('myproject.app.templatetags')
> >
> > What is the mistake? Thank's for any help
> >
>
> Two things, for INSTALL_APPS it should only be myproject.app
> Django will find the templatetags directory in your apps directory.
>
> You don't need to load the tags in your admin/index.html file, the context
> is
> passed to it already. Should only load it if you're using other custom
> filters or tags from the same app.
>
> Your html for admin/index.html should be:
>
>     {% for cat in categories %}
>           {{ cat.name }}
>     {% endfor %}
>
> In the html/template file that is using the nav_categorieslist tag, it
> should
> look like this:
>
> {% load categories %}
>
> {% nav_categorylist %}
>
>
> I normally put my load tags at the top of the template file.
>
> If you set the TEMPLATE_LOADERS setting to include
>
> 'django.template.loaders.app_directories.load_template_source',
>
> You can put the template tags html file in your app directory also, i.e.
> app/templates/admin/index.html; I do it this way to seperate the html from
> template tags from the rest of the html.
>
> Mike
>
> --
> I feel ... JUGULAR ...
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to