On Mon, Sep 19, 2011 at 9:16 PM, Carl Meyer wrote:
> The milestone field came up again in IRC discussion tonight between
> Julien and Paul and I -- namely, that it doesn't seem all that useful
> and causes noise in Trac.
I agree. I think the "release blocker" flag basically replaces the
milestone
On Tue, Sep 20, 2011 at 10:16 AM, Carl Meyer wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi all,
>
> The milestone field came up again in IRC discussion tonight between
> Julien and Paul and I -- namely, that it doesn't seem all that useful
> and causes noise in Trac.
>
> It might
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi all,
The milestone field came up again in IRC discussion tonight between
Julien and Paul and I -- namely, that it doesn't seem all that useful
and causes noise in Trac.
It might have made sense back when we had more feature-driven releases
and a f
Hey Karlis;
This is a cool idea. I don't do enough template work to always remember the
cycle syntax, but an odd/even is pretty simple to remember.
As for getting this into Django, check out the Contributing Docs[1]. It has
everything you need on how to help out. In particular the Requesting N
On 09/19/2011 12:58 PM, skazhy wrote:
Hi all!
I've been working with Django for a while now, but today I decided to
make a first contribution to Django that would make templates less
ugly by adding these two values to loop_dict (in django/template/
defaulttags.py):
loop_dict['even'] = (i %2 ==
Please don't crosspost to both django-users and django-developers: pick the
right list and post there. The right place for this question was
django-users.
Karen
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send em
How can i store Postgress array types in Django models
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to
django-developers
Hi all!
I've been working with Django for a while now, but today I decided to
make a first contribution to Django that would make templates less
ugly by adding these two values to loop_dict (in django/template/
defaulttags.py):
loop_dict['even'] = (i %2 == 0)
loop_dict['odd'] = (i %2 != 0)
Using