Re: Basic concept for templatetag using node and parser

2008-11-13 Thread suganthi saravanan
Thanks bruno...but i have already read the documentation for the Custom template tag. http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#writing-custom-template-tags I need simple example for more clarification can you help me. --~--~-~--~~~---~--~

Re: Basic concept for templatetag using node and parser

2008-11-14 Thread suganthi saravanan
Here i have customized the class in the templatetags folder and i have render too. Using the function also i have called the parser function and return the node object... I have created the template also How to call in the urls.py Suggest me. --~--~-~--~~~---~--~--

Re: Disabling Admin validation

2008-11-25 Thread suganthi saravanan
Hi David, Try it! If you are using (blank=true) inside the model class, validation disable. class Gallery(models.Model): name=models.CharField(max_length=200, blank=true) Cheers sugi --~--~-~--~~~---~--~~ You received this message because you are subscri

Re: Admin form

2008-11-25 Thread suganthi saravanan
Hi Praveen, Check it! Have you added the following line in settings.py under the INSTALLED_APPS 'django.contrib.admin' and synchronize the table . you can view the admin login from http://127.0.0.1:8000/admin/ --~--~-~--~~~---~--~~ You received this message be