Re: Add your own template library

2012-10-02 Thread Ashish Jain
And in settings.py, I have: TEMPLATE_TAGS = ( 'templatemyweb.tags.repeat', ) with which I am using this code snippet, * http://djangosnippets.org/snippets/342/* * * - Regards Ashish On Monday, 1 October 2012 18:01:48 UTC+5:30, Javier Guerra wrote:

Re: Add your own template library

2012-10-01 Thread Javier Guerra Giraldez
On Sun, Sep 30, 2012 at 11:59 PM, Ashish Jain wrote: > After which I am referring it into my website. ... and on settings.py? -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: Add your own template library

2012-10-01 Thread Ashish Jain
Thanks for the reply. Got the code working. It was my mistake the way I was using template in my html page. I had html page as: {%load repeat%} .. {% repeat data %} {% endrepeat %} I was not required to add "*{%load repeat%}*" line, which was resulting into error. Straightway the

Re: Add your own template library

2012-10-01 Thread Tom Evans
On Mon, Oct 1, 2012 at 5:59 AM, Ashish Jain wrote: > Hi, > > Yes it do have __init__.py > > I have created a simple project of template tags and have installed it as a > python package with setup.py. > > After which I am referring it into my website. > > - Thanks for

Re: Add your own template library

2012-10-01 Thread Ashish Jain
For reference, I have manage.py as: *#!/usr/bin/env python* *import os* *import sys* * * *# http://djangosnippets.org/snippets/342/* *def load_templatetags():* * from django.conf import settings* * from django.template import add_to_builtins* * * * try:* * for lib in

Re: Add your own template library

2012-09-30 Thread Ashish Jain
Hi, Yes it do have __init__.py I have created a simple project of template tags and have installed it as a python package with setup.py. After which I am referring it into my website. - Thanks for reply On Monday, 1 October 2012 09:45:46 UTC+5:30, Laxmikant Gurnalkar wrote: > > Hi Ashish, >

Add your own template library

2012-09-30 Thread Ashish Jain
Hi, I have created a custom template tags library which I would like to use across my application. I referred this code snippet, http://djangosnippets.org/snippets/342/ but still when I refer the tag in my code as: {% load repeat %}. It says 'repeat' is not a valid tag library, tried