Django formset ID error ...Cannot resolve keyword

2021-09-20 Thread Shane Sibbett
Hello, I am learning Django, I need help with my Django formset. The template-webpage would open when I just had a regular form but the look and feel was not what I wanted. I decided that I wanted to develop a formset. Along with the formset I want some values to populate automatically so the

Re: No ID Error

2020-11-11 Thread Jorge Gimeno
Without any more context, a Google search brought up this: https://stackoverflow.com/questions/55834107/django-template-library-invalidtemplatelibrary-invalid-template-library-specifi. Hopefully that is helpful. We would need the full trackback and the file where the error occurred to be able to

No ID Error

2020-11-10 Thread griffines onyango
"trying to load '%s': %s" % (entry[1], e) django.template.library.InvalidTemplateLibrary: Invalid template library specified. ImportError raised when trying to load 'django.contrib.admin.templatetags.admin_static': cannot import name 'RemovedInDjango30Warning'

Re: Id error

2012-08-31 Thread Drvanon
> In your CountryForm, calling super(self.__class__)... might not be a > good idea. You should name the class, ie. > > super(CountryForm, self).save(*args, **kwargs) > Just did that, had no effect. > I'd also be wary of defining a class called 'Object', since python > already has

Re: Id error

2012-08-31 Thread Paul Backhouse
In your CountryForm, calling super(self.__class__)... might not be a good idea. You should name the class, ie. super(CountryForm, self).save(*args, **kwargs) I'd also be wary of defining a class called 'Object', since python already has 'object' as part of its "new style" classes. Paul On

Id error

2012-08-31 Thread Drvanon
Hello django-ers, Today I had a good dream in which I though I fixed something in my bug-magnet. This was the outcome: # The Error Environment: Request Method: POST Request URL: http://127.0.0.1:8000/main Django Version: 1.4.1 Python Version: 2.7.3 Installed Applications: