Re: A picturesque authentication problem ONLY in Google Chrome

2023-06-08 Thread Rogério Carrasqueira
ng through the main site www.dominio.com.br, >> can log in successfully. Now, if you go through the main site afterwards, >> you can no longer log in to the restricted area, you must delete the cookie >> again in the Google Chrome settings. >> >> In other brows

Re: how to convert to Django 3 or 4

2023-06-08 Thread Rogério Carrasqueira
Hey Steven! Thanks for this information, do you have tried it before? I would like to move from 1.4 to lastest, do you think that is it possible? Thanks Em quarta-feira, 7 de junho de 2023 às 11:52:35 UTC-3, Steven Mapes escreveu: > I'd suggest looking into using Adam Johnson's Django-Upgrade

Re: How to join a search on user and user profile

2010-11-28 Thread Rogério Carrasqueira
Sorry for botter you John. I found my information: search_fields = ['foreign_key__related_fieldname'] http://docs.djangoproject.com/en/dev/ref/contrib/admin/ Thanks so much! Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@h

Re: How to join a search on user and user profile

2010-11-28 Thread Rogério Carrasqueira
Some one can help? Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 Em 22 de novembro de 2010 15:47, Rogério Carrasqueira < rogerio.carrasque...@gmail.com> escreveu: > Thanks Chris

Problems to use django-treebeard

2010-11-24 Thread Rogério Carrasqueira
/upload/ (1062, "Duplicate entry '000100020002' for key 'path'") Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 -- You received this message because you are subscribed t

Re: Problem with Mysql Queries in django

2010-11-22 Thread Rogério Carrasqueira
information http://docs.djangoproject.com/en/dev/ref/models/querysets/ Cheers Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 2010/11/22 Jagdeep Singh Malhi > Hi > I have two Problems w

Re: How to join a search on user and user profile

2010-11-22 Thread Rogério Carrasqueira
Thanks Chris, But I would like to use on admin, using the search_fields Cheers Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 2010/11/22 Chris Lawlor > You should be able to

How to join a search on user and user profile

2010-11-21 Thread Rogério Carrasqueira
nyway to work on this direction? Thanks Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 -- You received this message because you are subscribed to the Google Groups "Django users"

Re: Django UserProfile's - the hardest part of the whole framework

2010-11-21 Thread Rogério Carrasqueira
pt of Django. Can you help on this way? Thanks Rogério Carrasqueira On 1 set, 03:09, bruno desthuilliers wrote: > (snip 'programming by accident' code) > > I'm not sure you really understand what you're doing :-/ > > > > > Here's my problem, I kno

Enclosing intervals with dates on django

2010-11-08 Thread Rogério Carrasqueira
27;n happy on this way Someone can help? Thanks so much! Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 -- You received this message because you are subscribed to the Google Groups "Dj

Re: How to aggregate values by month

2010-11-04 Thread Rogério Carrasqueira
x27;), average_month=Avg('total_value')) This query works only using MySQL, to use with PGSQL you need to know to work with EXTRACT clauses. Cheers Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ:

Re: How to aggregate values by month

2010-11-04 Thread Rogério Carrasqueira
models.py? Thanks so much! Regards, Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 2010/10/29 sebastien piquemal > Hi ! > > You could also give django-cube a try : > http://co

Re: How to aggregate values by month

2010-11-03 Thread Rogério Carrasqueira
Hi Mikhail! Can you give some clue on how to use your plugin considering my scenario? Thanks Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 2010/10/28 Mikhail Korobov > Hi Rogé

Re: How to aggregate values by month

2010-11-03 Thread Rogério Carrasqueira
efined Do you have another approach? Regards, Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 2010/10/28 Scott Gould > Personally I hate writing raw SQL so I would probably try somethin

Re: How to aggregate values by month

2010-10-28 Thread Rogério Carrasqueira
Hello Everybody! I tried this way also: sales = Sale.objects.extra(select={' month': 'month(date_created)'}).filter(date_created__range=(init_date,ends_date)).values('month').aggregate(total_sales=Sum('total_value')) but returned {} Any ideias? C

Re: How to aggregate values by month

2010-10-28 Thread Rogério Carrasqueira
Hi Franklin! Thanks for you answer. Unfortunatelly I need to output my results on a JSON file. Do you have any other approach? Cheers, Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 7805-0074 2010

How to aggregate values by month

2010-10-28 Thread Rogério Carrasqueira
to group by this by month. So, my question: how to do that thing without using a raw sql query and not touching on database independence? Thanks so much! Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (1

Re: Synching samba users to django users?

2010-09-21 Thread Rogério Carrasqueira
Did you thought to use a third party solution creating a LDAP server and syncs the Samba and Django system with the LDAP? http://www.google.com.br/search?hl=&q=LDAP+django&sourceid=navclient-ff&rlz=1B7GGLL_enBR394BR394&ie=UTF-8 Cheers Rogério Carrasqueira --- e-mail: r

Problems to render a tree in Json - __init__() got an unexpected keyword argument 'use_decimal'

2010-09-21 Thread Rogério Carrasqueira
e, but I'm dont know all the things on django, so rest to me a only way: ask to the others :) Can anyone help me with this issue? Thanks so much! Rogério Carrasqueira --- e-mail: rogerio.carrasque...@gmail.com skype: rgcarrasqueira MSN: rcarrasque...@hotmail.com ICQ: 50525616 Tel.: (11) 78