Re: How to disable security hash in django comments

2011-06-06 Thread Ján Vorčák
011, at 4:35 PM, Ján Vorčák wrote: > > > Hi, > > > I'd like to ask you about one problem. > > I need to remove security hash django comments module. I need to allow > > posting to my app from external application just by posting the post > > request. > > How

How to disable security hash in django comments

2011-06-06 Thread Ján Vorčák
Hi, I'd like to ask you about one problem. I need to remove security hash django comments module. I need to allow posting to my app from external application just by posting the post request. How can I do that? Is there any way to disable this "security hash" protection? Thank you -- You

Django foreign key attribute in the model

2011-05-04 Thread Ján Vorčák
Hi, I'd like to ask you for some help :) I have a model with one foreign key from django.contrib.auth.models import User class Task(models.Model): ... submitter = models.ForeignKey(User, related_name='submitter') ... def get_user_link(self): return

Re: website path

2011-04-20 Thread Ján Vorčák
unts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}), Thank you so much On Apr 20, 4:26 am, Jacob Kaplan-Moss <ja...@jacobian.org> wrote: > 2011/4/19 Ján Vorčák <vorcak@gmail.com>: > > > I've installed a django on my server (running on apache),

Re: website path

2011-04-19 Thread Ján Vorčák
Hi Thank you for your response Yeah I've already read that, But in urls.py I have to explicitly say that my url is like django- application/someaplication My point is that I want to avoid writing django-application inside each url (+ in the template Link On Apr 19, 11:03 pm, Jeff Blaine

website path

2011-04-19 Thread Ján Vorčák
Hi, I've installed a django on my server (running on apache), but I've configured it to run using url like www.mydomain.com/django-application/ Now when I access some url from django using absolute url it automatically redirects me to www.mydomain.com/someapplication instead of