Re: Improving usefulness of management command help output via reordering options

2018-04-05 Thread Carlton Gibson
Hi David. Your suggestion seems sensible, good even. (To me at least. 🙂) If you'd be happy to do the work for it then a Trac ticket + PR would be the way to go. (Assuming there are no objections.) Kind Regards, Carlton On Friday, 6 April 2018 01:24:12 UTC+2, David Foster wrote: > > Curre

Improving usefulness of management command help output via reordering options

2018-04-05 Thread David Foster
Currently if you run a custom management command with --help, you will get output that looks like: $ python3 manage.py import_layout_calendar --help usage: manage.py import_layout_calendar [-h] [--version] [-v {0,1,2,3}] [--settings SETTINGS]

Re: How to contribution for Django

2018-04-05 Thread Hélio Correia
I have the same question and the same feeling Em quinta-feira, 5 de abril de 2018 19:48:38 UTC+1, Mberebe Guidona escreveu: > > Hello guys, > For some years now I've been working with Django already and now I was > thinking to be a contributor to the Django project. > I'm new in this and I hav

Re: How to contribution for Django

2018-04-05 Thread SHIV ANAND
Django has very clear well documented guide on that. Please go through it once you will find your answer. https://docs.djangoproject.com/en/dev/internals/contributing/ On Fri 6 Apr, 2018, 12:18 AM Mberebe Guidona, wrote: > Hello guys, > For some years now I've been working with Django already an

How to contribution for Django

2018-04-05 Thread Mberebe Guidona
Hello guys, For some years now I've been working with Django already and now I was thinking to be a contributor to the Django project. I'm new in this and I have a question, *How can we contribute to the Django project.* Thanks. -- You received this message because you are subscribed to the G

Annotate after filter joins - is this a bug?

2018-04-05 Thread Ole Laursen
Hi! I was reading the ORM documentation about annotate and aliases. Given class Paper(models.Model): pass class Author(models.Model): paper = models.ForeignKey(Paper, on_delete=models.CASCADE) name = models.CharField(max_length=100) and the query Paper.objects.filter(author_