About your topic on adding South to Django core.
Andrew is working on that:
https://www.djangoproject.com/weblog/2013/mar/22/kickstarting-schema-migrations-django/
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To unsubscribe from this gr
Could you make tags out of stable releases. It would help a lot :}
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-developers/-/NzF2b8Xl9wUJ.
To post to this g
On Saturday, April 28, 2012 5:08:09 AM UTC+2, Adrian Holovaty wrote:
>
> OK, it's live!
> https://github.com/django/django
>
Great news!
Therefore probably you should update this site:
https://www.djangoproject.com/download/
--
You received this message because you are subscribed to the Goog
Me too.
+ 1
--
Matt Harasymczuk
http://www.matt.harasymczuk.pl
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-developers/-/4b6tOPU9xjMJ.
To post to this grou
I suggest naming it src, and then having
example.com
- contrib
- docs
- public
- src
- manage.py
- myapp
- __init__.py
- settings.py
- urls.py
- virtualenv
--
You received this message because you are subscribed to the Googl
#urls.py
url(r'^', include('rm.urls', namespace="rm"), name="rm"),
#rm/urls.py
url(r'progress/$', ProgressView.as_view(), name='progress'),
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To view this discussion on the web visit
> python manage.py test
Creating test database for alias 'default'...
E...
I am sorry, my bad.
I was not sure that this one is a bug too, therefore I have asked at
django-users:
https://groups.google.com/forum/#!topic/django-users/S_4IuKw_e2U
however I think it is, and it should be reported to trac.
What do you think?
--
You received this message because you are sub
I have found two bugs in tests django.contrib.auth
https://code.djangoproject.com/ticket/16412
https://code.djangoproject.com/ticket/16413
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To view this discussion on the web visit
https://gr
Why not to give ability to chose by the developer?
if settings.VERBOSE_DEBUG:
as it is
else:
tabbed view
or
DEBUG_VIEW = 'tabbed'
DEBUG_VIEW = 'default'
etc...
IMHO: DEBUG_VIEW is better and more extensible in future.
--
Matt Harasymczuk
http://www.matt.harasymczuk.pl
--
You receive
Totally agree,
If someone moved out of the IE 6, then he/she move out of the IE 7, too.
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-developers/-/fAHtqn9esi
Colored output of the trackeback does not solve my problem of scrolling few
screens in order to find whats happening, or use cmd-F key to quick jump.
I think this is not a good way to do this.
What's I am thinking is a tabs at the top which manipulates with visibility
of certain divs of error pa
Hi,
I have been thinking about this for quite a long time.
Can you make an error display page less verbose?
I mean not to exclude those useful information, but to initially fold (hide)
them.
Fold those items:
- Python path at the top yellow background.
- (Hide or fold) django traceback entries
Indeed it is useful, I was using a custom made app to do so.
Thank you
--
Matt Harasymczuk
http://www.matt.harasymczuk.pl
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To view this discussion on the web visit
https://groups.google.com/d
Recently, I had to make more than one admin class in admin.py file.
I have never had a situation like this before.
I keept my admin classes in separate files in admin module.
It came to me that after each class definition you have to make
admin.site.register(Class, AdminClass)
Hence:
- Where is
This should solve my problems, therefore my question is no longer valid.
I missed that in the documentation.
Probably I should ask at django-users first.
Although
{% extends "admin/index.html" after "blockname" %}
would be a nice shorthand.
or
{% from "admin/index.html" import "blockname" %
I have recently fought with extending templates.
Plenty of my usecases are almost the same: append some html before or after
admin templates blocks.
To do so, I have to take template, copy the contents and save modified file
as a html in my templates dir.
What happens if django contrib.admin pa
In my opinion Meta class may contain this kind of information, and it would
simplify the process of designing models.
Especially handling fields which contains a lots of data inserted via
arguments.
However, I think that the Meta class properties should be an alias or a
handy shortcut, not one
I had an idea.
To move model fields options, such as:
- blank=BOOL
- null=BOOL
- auto_add=BOOL
- auto_add_now=BOOL
- db_index=BOOL
and others boolean options to Meta class of this model.
It would make model fields more readable and human friendly.
However I am not convinced, that it would be a g
I have to agree with this guy:
http://code.djangoproject.com/ticket/5446
There should be a model to hold country name and language:
{% quote %}
The idea is to have something like:
country = models.CountryField()
language = models.LanguageField()
Instead of:
lang = models.CharField ( max_len
20 matches
Mail list logo