CSS error in change_password.html

2008-09-01 Thread davor
Hi, On the "change password" page (when you go to edit your users in Django administration) submit button is floated right and it's container () doesn't wrap around it because submit button hasn't got clear:both set. or something similar. I suggest using overflow:auto on .submit-row class so str

Re: Archiving Model Instances?

2009-10-16 Thread davor
On Oct 16, 11:02 am, Thomas Guettler wrote: > Hi, > > If you use indices to access the models, you will see no noticable difference > in speed between 1,000 and 100,000 rows. This may be different if use no > indices (e.g. SQL LIKE "%...%"). But if the boolean column "archived" has > an index,

Django SVN 1.2_pre_alpha CSRF login problems and doc typos

2009-10-27 Thread davor
precated and will be removed in Django 1.4. Typos: ... POST forms to include the CRSF token was used. It should say "the CSRF token was used." and it's not {% crsf_token %} but {% csrf_token %} Thanks, Davor --~--~-~--~~---

Re: Serving static files?

2008-08-31 Thread Davor Lučić
If you are using Apache you can use mod_rewrite. http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html On Aug 31, 10:08 pm, Robert <[EMAIL PROTECTED]> wrote: > Hi, > > I just got done reading through the 4 django tutorials and they were > very helpful. However, I did not find out through the tut

HTTPS on docs.djangoproject.com

2015-06-12 Thread Davor Lučić
Hello, Is it possible to request documentation on docs.djangoproject.com without HTTPS? I work for corporation that either blocks or uses MITM certs for HTTPS and I am unable to access Django documentation since its forcing me to use HTTPS even when i request HTTP. Thank you, Davor -- You

Re: HTTPS on docs.djangoproject.com

2015-06-12 Thread Davor Lučić
Cool, thank you On 12 June 2015 at 21:13, Markus Holtermann wrote: > Hey, > > Not on djangoproject.com but you can use http://django.readthedocs.org/ > > /Markus > > On June 12, 2015 8:32:09 PM GMT+02:00, "Davor Lučić" > wrote: > >Hello, > >

Bug? django.contrib.auth.forms using User model by importing from auth.models instead of get_user_model()

2017-02-22 Thread Davor Lučić
wanted to check before creating a ticket. Thank you, Davor -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.

Re: Bug? django.contrib.auth.forms using User model by importing from auth.models instead of get_user_model()

2017-02-22 Thread Davor Lučić
response, Cheers! 1: https://github.com/django/django/blob/master/django/contrib/auth/forms.py#L92 On 22 February 2017 at 17:05, Davor Lučić wrote: > Hello, > > I have issues using custom user model and forms from contrib.auth.forms > When using `UserCreationForm` it says `auth_use