Re: Dictionary not rendering in a html table in a Template

2021-05-15 Thread Walter Randazzo
Hi Benny M,

Yes, two rows was rendered first but some fields were rendered out of the
html table rows.

I've modified the data structure from list of dictionaries to dictionary,
and now it works fine.

Thanks for your help,




El sáb, 15 may 2021 a las 19:30, Benny M () escribió:

> I feel like I missed something in this exchange. The template setup looked
> as though it was designed to loop though a list of dictionaries. As a
> result, based on the code provided, it should have produced two rows of
> data? Was that not the case?
>
> Benny
>
> On May 15, 2021, at 5:25 PM, Walter Randazzo  wrote:
>
> 
> Yes Boris. It works fine now.
>
> Thanks,
>
> El sáb, 15 may 2021 a las 19:18, Boris Pérez ()
> escribió:
>
>> Hi Walter, your template is rendering the data ok, after the changes???
>>
>>
>> 2021-05-14 20:56 GMT-04:00, Walter Randazzo :
>> > Hi All,
>> >
>> > This is how I get this working. (Thanks to Boris for the suggestion)
>> > I have modified a the structure of the data from list of dictionaries
>> to a
>> > dictionary.
>> >
>> > *#Now This is how the dictionary is printed in console*
>> >
>> > {'25': {'socio': 'Randazzo Walter Ariel 25', 'enero': 'P', 'febrero':
>> 'P',
>> > 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio': 'P', 'julio': 'P',
>> > 'agosto': 'P', 'septiembre': 'P', 'octubre': 'P', 'noviembre': 'P',
>> > 'diciembre': 'P'}, '31': {'socio': 'Silvi Edgardo Marcelo 31', 'enero':
>> > 'P', 'febrero': 'P', 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio':
>> 'P',
>> > 'julio': '-', 'agosto': '-', 'septiembre': '-', 'octubre': '-',
>> > 'noviembre': '-', 'diciembre': '-'}}
>> >
>> > *#This is how I populate the dictionary:*
>> >
>> > dictinfopagosanual[nrosocio]={'socio':soc,
>> >'enero':EneroPago,
>> >'febrero':FebreroPago,
>> >'marzo':MarzoPago,
>> >'abril':AbrilPago,
>> >'mayo':MayoPago,
>> >'junio':JunioPago,
>> >'julio':JulioPago,
>> >'agosto':AgostoPago,
>> >'septiembre':SeptiembrePago,
>> >'octubre':OctubrePago,
>> >'noviembre':NoviembrePago,
>> >'diciembre':DiciembrePago,
>> > }
>> >
>> > *#Then I render in the template as follow:*
>> >
>> > 
>> > {% for key,value in pagos.items %}
>> > 
>> > {% for key,value in value.items %}
>> >{{ value }}
>> > {% endfor %}
>> > 
>> > {% endfor %}
>> > 
>> >
>> >
>> >
>> >
>> > El vie, 14 may 2021 a las 19:59, Walter Randazzo (> >)
>> > escribió:
>> >
>> >> Hi Boris,
>> >>
>> >> You're right it is a list of dictionaries. I thought that the template
>> is
>> >> not able to render the data structure I used.
>> >>
>> >> I will take a look on the link,thanks for  the advice.
>> >>
>> >> Gracias Boris,
>> >>
>> >>
>> >>
>> >> El vie, 14 may 2021 a las 17:18, Boris Pérez ()
>> >> escribió:
>> >>
>> >>> Hi Walter, i think the matter is  that your dictionary, is not a
>> >>> dictionary,  is a list of dictionaries (it looks more than json
>> >>> object) perhaps u wanna use jquery and ajax, into your template...
>> >>> Maybe this link is usefull to u
>> >>>
>> >>>
>> https://stackoverflow.com/questions/51209582/django-dictionary-to-html-table-when-values-are-generators
>> .
>> >>> ..
>> >>> Greetings, Boris
>> >>>
>> >>>
>> >>> 2021-05-14 12:44 GMT-04:00, Walter Randazzo :
>> >>> > Hi Boris, Thanks for the reply.
>> >>> >
>> >>> > Here is the code:
>> >>> >
>> >>> > View:
>> >>> > http://del.dog/mavihosuna
>> >>> >
>> >>> > Template:
>> >>> > https://del.dog/mirfanelor
>> >>> >
>> >>> > Image of the rendered Template:
>> >>> > https://tmpsee.com/v/nbkdqhnxee
>> >>> >
>> >>> >
>> >>> > Regards,
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> > El vie, 14 may 2021 a las 11:57, Boris Pérez ()
>> >>> > escribió:
>> >>> >
>> >>> >> Where is the code, that u are using...
>> >>> >> Si quieres igual hablamos en español...
>> >>> >> Saludos...
>> >>> >>
>> >>> >> 2021-05-13 22:03 GMT-04:00, Walter Randazzo > >:
>> >>> >> > Hi Gabriel,
>> >>> >> >
>> >>> >> > I´ve just share the code via snippet to respect the identation of
>> >>> >> > the
>> >>> >> code
>> >>> >> >
>> >>> >> >
>> >>> >> > El jue, 13 may 2021 a las 21:47, Gabriel Araya Garcia (<
>> >>> >> > gabrielaraya2...@gmail.com>) escribió:
>> >>> >> >
>> >>> >> >> The links (image, code, and   https://tmpsee.com/v/nbkdqhnxee)
>> >>> >> >> they
>> >>> >> >> are
>> >>> >> >> shit. It is impossible see it. Why you don't cut and paste here
>> in
>> >>> >> >> forum
>> >>> >> >> page ?
>> >>> >> >> Gabriel Araya Garcia
>> >>> >> >> GMI - Desarrollo de 

Re: Dictionary not rendering in a html table in a Template

2021-05-15 Thread Boris Pérez
U r welcome!!! De nada amigo...saludos

2021-05-15 18:25 GMT-04:00, Walter Randazzo :
> Yes Boris. It works fine now.
>
> Thanks,
>
> El sáb, 15 may 2021 a las 19:18, Boris Pérez ()
> escribió:
>
>> Hi Walter, your template is rendering the data ok, after the changes???
>>
>>
>> 2021-05-14 20:56 GMT-04:00, Walter Randazzo :
>> > Hi All,
>> >
>> > This is how I get this working. (Thanks to Boris for the
>> > suggestion)
>> > I have modified a the structure of the data from list of dictionaries
>> > to
>> a
>> > dictionary.
>> >
>> > *#Now This is how the dictionary is printed in console*
>> >
>> > {'25': {'socio': 'Randazzo Walter Ariel 25', 'enero': 'P', 'febrero':
>> 'P',
>> > 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio': 'P', 'julio': 'P',
>> > 'agosto': 'P', 'septiembre': 'P', 'octubre': 'P', 'noviembre': 'P',
>> > 'diciembre': 'P'}, '31': {'socio': 'Silvi Edgardo Marcelo 31', 'enero':
>> > 'P', 'febrero': 'P', 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio':
>> 'P',
>> > 'julio': '-', 'agosto': '-', 'septiembre': '-', 'octubre': '-',
>> > 'noviembre': '-', 'diciembre': '-'}}
>> >
>> > *#This is how I populate the dictionary:*
>> >
>> > dictinfopagosanual[nrosocio]={'socio':soc,
>> >'enero':EneroPago,
>> >'febrero':FebreroPago,
>> >'marzo':MarzoPago,
>> >'abril':AbrilPago,
>> >'mayo':MayoPago,
>> >'junio':JunioPago,
>> >'julio':JulioPago,
>> >'agosto':AgostoPago,
>> >'septiembre':SeptiembrePago,
>> >'octubre':OctubrePago,
>> >'noviembre':NoviembrePago,
>> >'diciembre':DiciembrePago,
>> > }
>> >
>> > *#Then I render in the template as follow:*
>> >
>> > 
>> > {% for key,value in pagos.items %}
>> > > > %}>
>> > {% for key,value in value.items %}
>> >{{ value }}
>> > {% endfor %}
>> > 
>> > {% endfor %}
>> > 
>> >
>> >
>> >
>> >
>> > El vie, 14 may 2021 a las 19:59, Walter Randazzo (> >)
>> > escribió:
>> >
>> >> Hi Boris,
>> >>
>> >> You're right it is a list of dictionaries. I thought that the template
>> is
>> >> not able to render the data structure I used.
>> >>
>> >> I will take a look on the link,thanks for  the advice.
>> >>
>> >> Gracias Boris,
>> >>
>> >>
>> >>
>> >> El vie, 14 may 2021 a las 17:18, Boris Pérez ()
>> >> escribió:
>> >>
>> >>> Hi Walter, i think the matter is  that your dictionary, is not a
>> >>> dictionary,  is a list of dictionaries (it looks more than json
>> >>> object) perhaps u wanna use jquery and ajax, into your template...
>> >>> Maybe this link is usefull to u
>> >>>
>> >>>
>> https://stackoverflow.com/questions/51209582/django-dictionary-to-html-table-when-values-are-generators
>> .
>> >>> ..
>> >>> Greetings, Boris
>> >>>
>> >>>
>> >>> 2021-05-14 12:44 GMT-04:00, Walter Randazzo :
>> >>> > Hi Boris, Thanks for the reply.
>> >>> >
>> >>> > Here is the code:
>> >>> >
>> >>> > View:
>> >>> > http://del.dog/mavihosuna
>> >>> >
>> >>> > Template:
>> >>> > https://del.dog/mirfanelor
>> >>> >
>> >>> > Image of the rendered Template:
>> >>> > https://tmpsee.com/v/nbkdqhnxee
>> >>> >
>> >>> >
>> >>> > Regards,
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> > El vie, 14 may 2021 a las 11:57, Boris Pérez ()
>> >>> > escribió:
>> >>> >
>> >>> >> Where is the code, that u are using...
>> >>> >> Si quieres igual hablamos en español...
>> >>> >> Saludos...
>> >>> >>
>> >>> >> 2021-05-13 22:03 GMT-04:00, Walter Randazzo
>> >>> >> :
>> >>> >> > Hi Gabriel,
>> >>> >> >
>> >>> >> > I´ve just share the code via snippet to respect the identation
>> >>> >> > of
>> >>> >> > the
>> >>> >> code
>> >>> >> >
>> >>> >> >
>> >>> >> > El jue, 13 may 2021 a las 21:47, Gabriel Araya Garcia (<
>> >>> >> > gabrielaraya2...@gmail.com>) escribió:
>> >>> >> >
>> >>> >> >> The links (image, code, and   https://tmpsee.com/v/nbkdqhnxee)
>> >>> >> >> they
>> >>> >> >> are
>> >>> >> >> shit. It is impossible see it. Why you don't cut and paste here
>> in
>> >>> >> >> forum
>> >>> >> >> page ?
>> >>> >> >> Gabriel Araya Garcia
>> >>> >> >> GMI - Desarrollo de Sistemas Informáticos
>> >>> >> >>
>> >>> >> >>
>> >>> >> >>
>> >>> >> >>
>> >>> >> >> El jue, 13 may 2021 a las 20:22, Walter Randazzo
>> >>> >> >> (> >>> >> >)
>> >>> >> >> escribió:
>> >>> >> >>
>> >>> >> >>> Here is how the dictionary is render out in the template:
>> >>> >> >>> https://tmpsee.com/v/nbkdqhnxee
>> >>> >> >>>
>> >>> >> >>> thanks
>> >>> >> >>>
>> >>> >> >>> --
>> >>> >> >>> You received this message because you are subscribed to the
>> >>> >> >>> Google
>> >>> >> 

Re: why i am getting these error i dont know plz solve...

2021-05-15 Thread Boris Pérez
hi, i think you are calling your view incorrectly...u need to pass 2
arguments , first: username and the album_id, then you url may be
declared like thisÑ
path('/album//details',
views.album_details, name='album_details'),

2021-05-14 21:37 GMT-04:00, jatinhunter :
> Url name or url pattern is incorrect
>
>
> On Fri, 7 May 2021, 2:56 pm Kasper Laudrup,  wrote:
>
>> On 07/05/2021 10.23, Phani Deep wrote:
>> >
>> > NoReverseMatch
>> >
>> >
>> > Reverse for 'album_detail' with arguments '('', )' not
>> found. 1 pattern(s) tried:
>> ['@(?P[^/]+)/album/(?P[^/]+)/$']
>> >
>>
>> This will guide you towards a solution:
>>
>>
>> https://betterprogramming.pub/how-to-ask-questions-about-programming-dcd948fcd2bd
>>
>> Kind regards,
>>
>> Kasper Laudrup
>>
>>
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> > Groups "Django users" group.
>> > To unsubscribe from this group and stop receiving emails from it, send
>> > an email to django-users+unsubscr...@googlegroups.com
>> > .
>> > To view this discussion on the web visit
>> >
>> https://groups.google.com/d/msgid/django-users/CANec_ReVnw%2Bn3ss4UbhVLaZeZxobLzXUgMdG-T5bN7vze8%2Bd0w%40mail.gmail.com
>> > <
>> https://groups.google.com/d/msgid/django-users/CANec_ReVnw%2Bn3ss4UbhVLaZeZxobLzXUgMdG-T5bN7vze8%2Bd0w%40mail.gmail.com?utm_medium=email_source=footer
>> >.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/a7d1f22d-15e9-1a53-77ec-aa1fea4d4bbd%40stacktrace.dk
>> .
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAPXsoruQje%3DBAq5pzLFYMWz-HUVUdK%3Dy%2BJ_WDT5zKrO2J7UqpA%40mail.gmail.com.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAObPVPDJzd4V1xTF1Cc24DG4sVxSqOBi-gAJjLspim2DYgCEOQ%40mail.gmail.com.


Re: Dictionary not rendering in a html table in a Template

2021-05-15 Thread Benny M
I feel like I missed something in this exchange. The template setup looked as 
though it was designed to loop though a list of dictionaries. As a result, 
based on the code provided, it should have produced two rows of data? Was that 
not the case?

Benny

On May 15, 2021, at 5:25 PM, Walter Randazzo  wrote:


Yes Boris. It works fine now.

Thanks,

El sáb, 15 may 2021 a las 19:18, Boris Pérez 
(mailto:polu...@gmail.com>>) escribió:
Hi Walter, your template is rendering the data ok, after the changes???


2021-05-14 20:56 GMT-04:00, Walter Randazzo 
mailto:wwranda...@gmail.com>>:
> Hi All,
>
> This is how I get this working. (Thanks to Boris for the suggestion)
> I have modified a the structure of the data from list of dictionaries to a
> dictionary.
>
> *#Now This is how the dictionary is printed in console*
>
> {'25': {'socio': 'Randazzo Walter Ariel 25', 'enero': 'P', 'febrero': 'P',
> 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio': 'P', 'julio': 'P',
> 'agosto': 'P', 'septiembre': 'P', 'octubre': 'P', 'noviembre': 'P',
> 'diciembre': 'P'}, '31': {'socio': 'Silvi Edgardo Marcelo 31', 'enero':
> 'P', 'febrero': 'P', 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio': 'P',
> 'julio': '-', 'agosto': '-', 'septiembre': '-', 'octubre': '-',
> 'noviembre': '-', 'diciembre': '-'}}
>
> *#This is how I populate the dictionary:*
>
> dictinfopagosanual[nrosocio]={'socio':soc,
>'enero':EneroPago,
>'febrero':FebreroPago,
>'marzo':MarzoPago,
>'abril':AbrilPago,
>'mayo':MayoPago,
>'junio':JunioPago,
>'julio':JulioPago,
>'agosto':AgostoPago,
>'septiembre':SeptiembrePago,
>'octubre':OctubrePago,
>'noviembre':NoviembrePago,
>'diciembre':DiciembrePago,
> }
>
> *#Then I render in the template as follow:*
>
> 
> {% for key,value in pagos.items %}
> 
> {% for key,value in value.items %}
>{{ value }}
> {% endfor %}
> 
> {% endfor %}
> 
>
>
>
>
> El vie, 14 may 2021 a las 19:59, Walter Randazzo 
> (mailto:wwranda...@gmail.com>>)
> escribió:
>
>> Hi Boris,
>>
>> You're right it is a list of dictionaries. I thought that the template is
>> not able to render the data structure I used.
>>
>> I will take a look on the link,thanks for  the advice.
>>
>> Gracias Boris,
>>
>>
>>
>> El vie, 14 may 2021 a las 17:18, Boris Pérez 
>> (mailto:polu...@gmail.com>>)
>> escribió:
>>
>>> Hi Walter, i think the matter is  that your dictionary, is not a
>>> dictionary,  is a list of dictionaries (it looks more than json
>>> object) perhaps u wanna use jquery and ajax, into your template...
>>> Maybe this link is usefull to u
>>>
>>> https://stackoverflow.com/questions/51209582/django-dictionary-to-html-table-when-values-are-generators.
>>> ..
>>> Greetings, Boris
>>>
>>>
>>> 2021-05-14 12:44 GMT-04:00, Walter Randazzo 
>>> mailto:wwranda...@gmail.com>>:
>>> > Hi Boris, Thanks for the reply.
>>> >
>>> > Here is the code:
>>> >
>>> > View:
>>> > http://del.dog/mavihosuna
>>> >
>>> > Template:
>>> > https://del.dog/mirfanelor
>>> >
>>> > Image of the rendered Template:
>>> > https://tmpsee.com/v/nbkdqhnxee
>>> >
>>> >
>>> > Regards,
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > El vie, 14 may 2021 a las 11:57, Boris Pérez 
>>> > (mailto:polu...@gmail.com>>)
>>> > escribió:
>>> >
>>> >> Where is the code, that u are using...
>>> >> Si quieres igual hablamos en español...
>>> >> Saludos...
>>> >>
>>> >> 2021-05-13 22:03 GMT-04:00, Walter Randazzo 
>>> >> mailto:wwranda...@gmail.com>>:
>>> >> > Hi Gabriel,
>>> >> >
>>> >> > I´ve just share the code via snippet to respect the identation of
>>> >> > the
>>> >> code
>>> >> >
>>> >> >
>>> >> > El jue, 13 may 2021 a las 21:47, Gabriel Araya Garcia (<
>>> >> > gabrielaraya2...@gmail.com>) 
>>> >> > escribió:
>>> >> >
>>> >> >> The links (image, code, and   https://tmpsee.com/v/nbkdqhnxee)
>>> >> >> they
>>> >> >> are
>>> >> >> shit. It is impossible see it. Why you don't cut and paste here in
>>> >> >> forum
>>> >> >> page ?
>>> >> >> Gabriel Araya Garcia
>>> >> >> GMI - Desarrollo de Sistemas Informáticos
>>> >> >>
>>> >> >>
>>> >> >>
>>> >> >>
>>> >> >> El jue, 13 may 2021 a las 20:22, Walter Randazzo
>>> >> >> (mailto:wwranda...@gmail.com>
>>> >> >)
>>> >> >> escribió:
>>> >> >>
>>> >> >>> Here is how the dictionary is render out in the template:
>>> >> >>> https://tmpsee.com/v/nbkdqhnxee
>>> >> >>>
>>> >> >>> thanks
>>> >> >>>
>>> >> >>> --
>>> >> >>> You received this message because you are subscribed to the
>>> >> >>> 

Re: Dictionary not rendering in a html table in a Template

2021-05-15 Thread Walter Randazzo
Yes Boris. It works fine now.

Thanks,

El sáb, 15 may 2021 a las 19:18, Boris Pérez () escribió:

> Hi Walter, your template is rendering the data ok, after the changes???
>
>
> 2021-05-14 20:56 GMT-04:00, Walter Randazzo :
> > Hi All,
> >
> > This is how I get this working. (Thanks to Boris for the suggestion)
> > I have modified a the structure of the data from list of dictionaries to
> a
> > dictionary.
> >
> > *#Now This is how the dictionary is printed in console*
> >
> > {'25': {'socio': 'Randazzo Walter Ariel 25', 'enero': 'P', 'febrero':
> 'P',
> > 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio': 'P', 'julio': 'P',
> > 'agosto': 'P', 'septiembre': 'P', 'octubre': 'P', 'noviembre': 'P',
> > 'diciembre': 'P'}, '31': {'socio': 'Silvi Edgardo Marcelo 31', 'enero':
> > 'P', 'febrero': 'P', 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio':
> 'P',
> > 'julio': '-', 'agosto': '-', 'septiembre': '-', 'octubre': '-',
> > 'noviembre': '-', 'diciembre': '-'}}
> >
> > *#This is how I populate the dictionary:*
> >
> > dictinfopagosanual[nrosocio]={'socio':soc,
> >'enero':EneroPago,
> >'febrero':FebreroPago,
> >'marzo':MarzoPago,
> >'abril':AbrilPago,
> >'mayo':MayoPago,
> >'junio':JunioPago,
> >'julio':JulioPago,
> >'agosto':AgostoPago,
> >'septiembre':SeptiembrePago,
> >'octubre':OctubrePago,
> >'noviembre':NoviembrePago,
> >'diciembre':DiciembrePago,
> > }
> >
> > *#Then I render in the template as follow:*
> >
> > 
> > {% for key,value in pagos.items %}
> > 
> > {% for key,value in value.items %}
> >{{ value }}
> > {% endfor %}
> > 
> > {% endfor %}
> > 
> >
> >
> >
> >
> > El vie, 14 may 2021 a las 19:59, Walter Randazzo ( >)
> > escribió:
> >
> >> Hi Boris,
> >>
> >> You're right it is a list of dictionaries. I thought that the template
> is
> >> not able to render the data structure I used.
> >>
> >> I will take a look on the link,thanks for  the advice.
> >>
> >> Gracias Boris,
> >>
> >>
> >>
> >> El vie, 14 may 2021 a las 17:18, Boris Pérez ()
> >> escribió:
> >>
> >>> Hi Walter, i think the matter is  that your dictionary, is not a
> >>> dictionary,  is a list of dictionaries (it looks more than json
> >>> object) perhaps u wanna use jquery and ajax, into your template...
> >>> Maybe this link is usefull to u
> >>>
> >>>
> https://stackoverflow.com/questions/51209582/django-dictionary-to-html-table-when-values-are-generators
> .
> >>> ..
> >>> Greetings, Boris
> >>>
> >>>
> >>> 2021-05-14 12:44 GMT-04:00, Walter Randazzo :
> >>> > Hi Boris, Thanks for the reply.
> >>> >
> >>> > Here is the code:
> >>> >
> >>> > View:
> >>> > http://del.dog/mavihosuna
> >>> >
> >>> > Template:
> >>> > https://del.dog/mirfanelor
> >>> >
> >>> > Image of the rendered Template:
> >>> > https://tmpsee.com/v/nbkdqhnxee
> >>> >
> >>> >
> >>> > Regards,
> >>> >
> >>> >
> >>> >
> >>> >
> >>> >
> >>> > El vie, 14 may 2021 a las 11:57, Boris Pérez ()
> >>> > escribió:
> >>> >
> >>> >> Where is the code, that u are using...
> >>> >> Si quieres igual hablamos en español...
> >>> >> Saludos...
> >>> >>
> >>> >> 2021-05-13 22:03 GMT-04:00, Walter Randazzo :
> >>> >> > Hi Gabriel,
> >>> >> >
> >>> >> > I´ve just share the code via snippet to respect the identation of
> >>> >> > the
> >>> >> code
> >>> >> >
> >>> >> >
> >>> >> > El jue, 13 may 2021 a las 21:47, Gabriel Araya Garcia (<
> >>> >> > gabrielaraya2...@gmail.com>) escribió:
> >>> >> >
> >>> >> >> The links (image, code, and   https://tmpsee.com/v/nbkdqhnxee)
> >>> >> >> they
> >>> >> >> are
> >>> >> >> shit. It is impossible see it. Why you don't cut and paste here
> in
> >>> >> >> forum
> >>> >> >> page ?
> >>> >> >> Gabriel Araya Garcia
> >>> >> >> GMI - Desarrollo de Sistemas Informáticos
> >>> >> >>
> >>> >> >>
> >>> >> >>
> >>> >> >>
> >>> >> >> El jue, 13 may 2021 a las 20:22, Walter Randazzo
> >>> >> >> ( >>> >> >)
> >>> >> >> escribió:
> >>> >> >>
> >>> >> >>> Here is how the dictionary is render out in the template:
> >>> >> >>> https://tmpsee.com/v/nbkdqhnxee
> >>> >> >>>
> >>> >> >>> thanks
> >>> >> >>>
> >>> >> >>> --
> >>> >> >>> You received this message because you are subscribed to the
> >>> >> >>> Google
> >>> >> >>> Groups
> >>> >> >>> "Django users" group.
> >>> >> >>> To unsubscribe from this group and stop receiving emails from
> it,
> >>> >> >>> send
> >>> >> >>> an
> >>> >> >>> email to django-users+unsubscr...@googlegroups.com.
> >>> >> >>> To view this discussion on the web visit
> >>> >> >>>

Re: Dictionary not rendering in a html table in a Template

2021-05-15 Thread Boris Pérez
Hi Walter, your template is rendering the data ok, after the changes???


2021-05-14 20:56 GMT-04:00, Walter Randazzo :
> Hi All,
>
> This is how I get this working. (Thanks to Boris for the suggestion)
> I have modified a the structure of the data from list of dictionaries to a
> dictionary.
>
> *#Now This is how the dictionary is printed in console*
>
> {'25': {'socio': 'Randazzo Walter Ariel 25', 'enero': 'P', 'febrero': 'P',
> 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio': 'P', 'julio': 'P',
> 'agosto': 'P', 'septiembre': 'P', 'octubre': 'P', 'noviembre': 'P',
> 'diciembre': 'P'}, '31': {'socio': 'Silvi Edgardo Marcelo 31', 'enero':
> 'P', 'febrero': 'P', 'marzo': 'P', 'abril': 'P', 'mayo': 'P', 'junio': 'P',
> 'julio': '-', 'agosto': '-', 'septiembre': '-', 'octubre': '-',
> 'noviembre': '-', 'diciembre': '-'}}
>
> *#This is how I populate the dictionary:*
>
> dictinfopagosanual[nrosocio]={'socio':soc,
>'enero':EneroPago,
>'febrero':FebreroPago,
>'marzo':MarzoPago,
>'abril':AbrilPago,
>'mayo':MayoPago,
>'junio':JunioPago,
>'julio':JulioPago,
>'agosto':AgostoPago,
>'septiembre':SeptiembrePago,
>'octubre':OctubrePago,
>'noviembre':NoviembrePago,
>'diciembre':DiciembrePago,
> }
>
> *#Then I render in the template as follow:*
>
> 
> {% for key,value in pagos.items %}
> 
> {% for key,value in value.items %}
>{{ value }}
> {% endfor %}
> 
> {% endfor %}
> 
>
>
>
>
> El vie, 14 may 2021 a las 19:59, Walter Randazzo ()
> escribió:
>
>> Hi Boris,
>>
>> You're right it is a list of dictionaries. I thought that the template is
>> not able to render the data structure I used.
>>
>> I will take a look on the link,thanks for  the advice.
>>
>> Gracias Boris,
>>
>>
>>
>> El vie, 14 may 2021 a las 17:18, Boris Pérez ()
>> escribió:
>>
>>> Hi Walter, i think the matter is  that your dictionary, is not a
>>> dictionary,  is a list of dictionaries (it looks more than json
>>> object) perhaps u wanna use jquery and ajax, into your template...
>>> Maybe this link is usefull to u
>>>
>>> https://stackoverflow.com/questions/51209582/django-dictionary-to-html-table-when-values-are-generators.
>>> ..
>>> Greetings, Boris
>>>
>>>
>>> 2021-05-14 12:44 GMT-04:00, Walter Randazzo :
>>> > Hi Boris, Thanks for the reply.
>>> >
>>> > Here is the code:
>>> >
>>> > View:
>>> > http://del.dog/mavihosuna
>>> >
>>> > Template:
>>> > https://del.dog/mirfanelor
>>> >
>>> > Image of the rendered Template:
>>> > https://tmpsee.com/v/nbkdqhnxee
>>> >
>>> >
>>> > Regards,
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > El vie, 14 may 2021 a las 11:57, Boris Pérez ()
>>> > escribió:
>>> >
>>> >> Where is the code, that u are using...
>>> >> Si quieres igual hablamos en español...
>>> >> Saludos...
>>> >>
>>> >> 2021-05-13 22:03 GMT-04:00, Walter Randazzo :
>>> >> > Hi Gabriel,
>>> >> >
>>> >> > I´ve just share the code via snippet to respect the identation of
>>> >> > the
>>> >> code
>>> >> >
>>> >> >
>>> >> > El jue, 13 may 2021 a las 21:47, Gabriel Araya Garcia (<
>>> >> > gabrielaraya2...@gmail.com>) escribió:
>>> >> >
>>> >> >> The links (image, code, and   https://tmpsee.com/v/nbkdqhnxee)
>>> >> >> they
>>> >> >> are
>>> >> >> shit. It is impossible see it. Why you don't cut and paste here in
>>> >> >> forum
>>> >> >> page ?
>>> >> >> Gabriel Araya Garcia
>>> >> >> GMI - Desarrollo de Sistemas Informáticos
>>> >> >>
>>> >> >>
>>> >> >>
>>> >> >>
>>> >> >> El jue, 13 may 2021 a las 20:22, Walter Randazzo
>>> >> >> (>> >> >)
>>> >> >> escribió:
>>> >> >>
>>> >> >>> Here is how the dictionary is render out in the template:
>>> >> >>> https://tmpsee.com/v/nbkdqhnxee
>>> >> >>>
>>> >> >>> thanks
>>> >> >>>
>>> >> >>> --
>>> >> >>> You received this message because you are subscribed to the
>>> >> >>> Google
>>> >> >>> Groups
>>> >> >>> "Django users" group.
>>> >> >>> To unsubscribe from this group and stop receiving emails from it,
>>> >> >>> send
>>> >> >>> an
>>> >> >>> email to django-users+unsubscr...@googlegroups.com.
>>> >> >>> To view this discussion on the web visit
>>> >> >>>
>>> >>
>>> https://groups.google.com/d/msgid/django-users/CAL7Dry7q1_WumJy1kKJROVD7xYFZ-2ie43LQMHJt0dLRQ9Lv0w%40mail.gmail.com
>>> >> >>> <
>>> >>
>>> https://groups.google.com/d/msgid/django-users/CAL7Dry7q1_WumJy1kKJROVD7xYFZ-2ie43LQMHJt0dLRQ9Lv0w%40mail.gmail.com?utm_medium=email_source=footer
>>> >> >
>>> >> >>> .
>>> >> >>>
>>> >> >> --
>>> >> >> You received this message because you are subscribed to the 

Re: Creating dynamic chart / graphs with Django

2021-05-15 Thread Thomas Lockhart
Django integration is fairly easy with Bokeh. For very large datasets you will 
want to also use Datashader and Holoviews so that high-density data gets 
rendered with meaningful interpolations.

hth

- Tom

> On Apr 12, 2021, at 7:16 AM, Lars Liedtke  wrote:
> 
> Hey,
> 
> this is quite good https://bokeh.org  it can create 
> dynamic html/js as well, but I don't know how the interagion into django is.
> 
> Cheers
> 
> Lars
> 
> Am 12.04.21 um 15:32 schrieb Walter Randazzo:
>> Hi Tristan,
>> 
>> i have used this one just once. 
>> 
>> 
>> https://www.highcharts.com/demo 
>> 
>> Check it, it easy to setup.
>> 
>> Regards,
>> 
>> 
>> 
>> 
>> El lun, 12 abr 2021 a las 10:05, tristant (> >) escribió:
>> I am looking to build site with a variety of charts and graphs. A quick 
>> search shows quite a lot of packages out there, as listed here Django 
>> Packages : Charts 
>> 
>> Has anyone used any of these packages and could provide some advice on which 
>> is better? For my task, I am looking to create both typical 2D charts as 
>> well as possible 3D plots. The charts need to be interactive ( as in user 
>> can tweak inputs and expect the charts to respond).
>> 
>> I have done similar charts with R Shiny. I am wondering which of these 
>> packages can do similar things?
>> 
>> I notice in the link, some packages mention "offline". Does this mean they 
>> cannot create interactive charts?
>> 
>> Thanks.
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users+unsubscr...@googlegroups.com 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/efe61d41-1e8c-4c56-899f-8164c0384bf3n%40googlegroups.com
>>  
>> .
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users+unsubscr...@googlegroups.com 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAL7Dry50qF%3DJ0A5f3p%3DUMpVhzhnAV2s4nRmUr4g37LZ5Qju3%3Dg%40mail.gmail.com
>>  
>> .
> -- 
> ---
> punkt.de GmbH
> Lars Liedtke
> .infrastructure
> 
> Kaiserallee 13a   
> 76133 Karlsruhe
> 
> Tel. +49 721 9109 500
> https://infrastructure.punkt.de 
> i...@punkt.de 
> 
> AG Mannheim 108285
> Geschäftsführer: Jürgen Egeling, Daniel Lienert, Fabian Stein
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/b1a86516-79e5-faf1-9d6d-87edbf3301bc%40punkt.de
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4C6F8FF6-9CAF-4CA2-AE0A-5A8BB072B131%40gmail.com.


Re: Server balance

2021-05-15 Thread Thomas Lockhart
You will find a lot of useful information just by searching for “scaling 
Django”. Then you can ask specific questions here.

hth

- Tom

> On May 14, 2021, at 9:29 PM, Shashank Vijendra  
> wrote:
> 
> If suddenly Users are increased for our site our site capacity is lets take 
> 1000 
> so what should i do or how to manage that site in Django plz anyone explain 
> this
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/27c119c6-b76e-4e6f-a95e-9425e8c2174en%40googlegroups.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/AC862BB2-A47D-4AAC-8FEF-A2811FE41009%40gmail.com.


RuntimeError: Lock is not acquired.

2021-05-15 Thread Filbert

I see this is likely something with channels_redis, is this an indicator of 
a bug or redis going offline (no indication it did) ??
On Friday, May 14, 2021 at 12:23:27 PM UTC-4 Filbert wrote:

> And strangely I am seeing blocks of this in the log as well here and there 
> from Daphne. (Ignore the XX). 
>
> XX.240.122.161:443 - - [14/May/2021:13:36:09] "WSCONNECTING /ws/" - -
> XX.240.122.161:443 - - [14/May/2021:13:36:09] "WSCONNECT /ws/" - -
> XX7.0.61.54:443 - - [14/May/2021:13:37:50] "WSCONNECTING /ws/" - -
> XX7.0.61.54:443 - - [14/May/2021:13:37:50] "WSCONNECT /ws/" - -
> XX4.108.212.90:443 - - [14/May/2021:13:42:10] "WSCONNECTING /ws/" - -
> XX4.108.212.90:443 - - [14/May/2021:13:42:10] "WSCONNECT /ws/" - -
> XX.123.245.94:443 - - [14/May/2021:13:47:30] "WSCONNECTING /ws/" - -
> XX.123.245.94:443 - - [14/May/2021:13:47:30] "WSCONNECT /ws/" - -
> XX.131.52.248:443 - - [14/May/2021:13:48:31] "WSCONNECTING /ws/" - -
> XX.131.52.248:443 - - [14/May/2021:13:48:31] "WSCONNECT /ws/" - -
> XX.123.245.94:443 - - [14/May/2021:13:53:06] "WSCONNECTING /ws/" - -
> XX.123.245.94:443 - - [14/May/2021:13:53:06] "WSCONNECT /ws/" - -
> XX.123.245.90:443 - - [14/May/2021:13:55:39] "WSCONNECTING /ws/" - -
> XX.123.245.90:443 - - [14/May/2021:13:55:39] "WSCONNECT /ws/" - -
> XX.240.122.161:443 - - [14/May/2021:14:02:46] "WSCONNECTING /ws/" - -
> XX.240.122.161:443 - - [14/May/2021:14:02:46] "WSCONNECT /ws/" - -
> XX.123.245.94:443 - - [14/May/2021:14:08:05] "WSDISCONNECT /ws/" - -
> XX4.108.212.90:443 - - [14/May/2021:14:09:22] "WSCONNECTING /ws/" - -
> XX4.108.212.90:443 - - [14/May/2021:14:09:22] "WSCONNECT /ws/" - -
> XX.247.160.89:443 - - [14/May/2021:14:10:20] "WSCONNECTING /ws/" - -
> XX.247.160.89:443 - - [14/May/2021:14:10:20] "WSCONNECT /ws/" - -
> XX.142.149.206:443 - - [14/May/2021:14:11:53] "WSCONNECTING /ws/" - -
> XX.142.149.206:443 - - [14/May/2021:14:11:53] "WSCONNECT /ws/" - -
> XX.240.122.186:443 - - [14/May/2021:14:13:38] "WSCONNECTING /ws/" - -
> XX.240.122.186:443 - - [14/May/2021:14:13:38] "WSCONNECT /ws/" - -
> XX.142.150.22:443 - - [14/May/2021:14:20:20] "WSCONNECTING /ws/" - -
> XX.142.150.22:443 - - [14/May/2021:14:20:20] "WSCONNECT /ws/" - -
> XX7.0.61.54:443 - - [14/May/2021:14:23:12] "WSDISCONNECT /ws/" - -
> XX.123.245.94:443 - - [14/May/2021:14:26:18] "WSCONNECTING /ws/" - -
> XX.123.245.94:443 - - [14/May/2021:14:26:18] "WSCONNECT /ws/" - -
> XX.178.167.247:443 - - [14/May/2021:14:28:20] "WSCONNECTING /ws/" - -
> XX.178.167.247:443 - - [14/May/2021:14:28:20] "WSCONNECT /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:10] "WSCONNECTING /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:10] "WSCONNECT /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:10] "WSCONNECTING /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:10] "WSCONNECT /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:11] "WSDISCONNECT /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:20] "WSCONNECTING /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:20] "WSCONNECT /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:21] "WSCONNECTING /ws/" - -
> XX.207.233.198:443 - - [14/May/2021:14:30:21] "WSCONNECT /ws/" - -
> XX7.0.61.54:443 - - [14/May/2021:14:33:26] "WSCONNECTING /ws/" - -
>
> On Thursday, May 13, 2021 at 10:10:56 PM UTC-4 Filbert wrote:
>
>> Multi-tenant Django application with 100's of WebSockets using 
>> Daphne/Channels.
>> channels==2.4.0
>> channels-redis==2.4.2
>> daphne==2.5.0
>> Django==2.2.13
>>
>> Only clue I have at this point is WebClients seem to hang up waiting for 
>> messages that are not delivered.  I see in the Django logs "RuntimeError: 
>> Lock is not acquired." over and over throughout the day.
>>
>> Sample client code I have here causes the issue at will.  I can only hit 
>> it with 20 or so tasks before it falls over.
>>
>> import time
>>
>> async def test_socket(n, url, count, delay):
>> uri = 'wss://{0}/ws/'.format(url)
>> print('Starting task {0}...'.format(n))
>> async with websockets.connect(uri, close_timeout=5, ping_interval=5, 
>> ping_timeout=5) as websocket:
>> payload = '{"stream":"ping", "payload":{}}'
>> for i in range(0, count):
>> print('TASK {0} : Channels/daphne request {1} 
>> times'.format(n, i))
>> await websocket.send(payload)
>> asyncio.sleep(delay)
>> response = await asyncio.wait_for(websocket.recv(), 
>> timeout=30)
>> print('TASK {0} : Channels/daphne for responded {1} {2} 
>> times'.format(n, i, response))
>>
>> async def start_tasks(loop, url, count, delay, tasks):
>> t = [test_socket(n, url, count, delay) for n in range (0, tasks)]
>> await asyncio.gather(*t, loop=loop)
>>
>> if __name__ == "__main__":
>> parser = argparse.ArgumentParser()
>> parser.add_argument('--url', type=str, help='url to hit')
>> parser.add_argument('--count', type=int, default=1, help='number of 
>> iterations')
>> parser.add_argument('--delay', type=int, 

Re: Creating dynamic chart / graphs with Django

2021-05-15 Thread Santhosh Kumar
i too have similar requirement. I tried plotly, however the integration of 
django and plotly didnt go well often with huge data in sense, loading time 
was high and special channels setup was required. (i learnt from this video 
).
Currently im trying with chartjs.
Any other better suggestions please let us know in the group.

I believe (not sure) such channels implementation will be required for 
bokeh and seaborn as well. 

On Monday, April 12, 2021 at 6:30:17 PM UTC+2 tristant wrote:

> Thanks Walter and Lars for the tips.
>
> On Mon, Apr 12, 2021 at 8:16 AM Lars Liedtke  wrote:
>
>> Hey,
>>
>> this is quite good https://bokeh.org it can create dynamic html/js as 
>> well, but I don't know how the interagion into django is.
>>
>> Cheers
>>
>> Lars
>> Am 12.04.21 um 15:32 schrieb Walter Randazzo:
>>
>> Hi Tristan,
>>
>> i have used this one just once. 
>>
>>
>> https://www.highcharts.com/demo
>>
>> Check it, it easy to setup.
>>
>> Regards,
>>
>>
>>
>> El lun, 12 abr 2021 a las 10:05, tristant () 
>> escribió:
>>
>>> I am looking to build site with a variety of charts and graphs. A quick 
>>> search shows quite a lot of packages out there, as listed here Django 
>>> Packages : Charts  
>>>
>>> Has anyone used any of these packages and could provide some advice on 
>>> which is better? For my task, I am looking to create both typical 2D charts 
>>> as well as possible 3D plots. The charts need to be interactive ( as in 
>>> user can tweak inputs and expect the charts to respond).
>>>
>>> I have done similar charts with R Shiny. I am wondering which of these 
>>> packages can do similar things?
>>>
>>> I notice in the link, some packages mention "offline". Does this mean 
>>> they cannot create interactive charts?
>>>
>>> Thanks.
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to django-users...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/efe61d41-1e8c-4c56-899f-8164c0384bf3n%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAL7Dry50qF%3DJ0A5f3p%3DUMpVhzhnAV2s4nRmUr4g37LZ5Qju3%3Dg%40mail.gmail.com
>>  
>> 
>> .
>>
>> -- 
>> ---punkt.de GmbH
>> Lars Liedtke
>> .infrastructure
>>
>> Kaiserallee 13a  
>> 76133 Karlsruhe
>>
>> Tel. +49 721 9109 500 
>> <+49%20721%209109500>https://infrastructure.punkt.dein...@punkt.de
>>
>> AG Mannheim 108285
>> Geschäftsführer: Jürgen Egeling, Daniel Lienert, Fabian Stein
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/b1a86516-79e5-faf1-9d6d-87edbf3301bc%40punkt.de
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/541bc692-a1af-44a5-bd11-c72738141e3bn%40googlegroups.com.


Server balance

2021-05-15 Thread Shashank Vijendra
If suddenly Users are increased for our site our site capacity is lets take 
1000 
so what should i do or how to manage that site in Django plz anyone explain 
this

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/27c119c6-b76e-4e6f-a95e-9425e8c2174en%40googlegroups.com.


Re: why i am getting these error i dont know plz solve...

2021-05-15 Thread jatinhunter
Url name or url pattern is incorrect


On Fri, 7 May 2021, 2:56 pm Kasper Laudrup,  wrote:

> On 07/05/2021 10.23, Phani Deep wrote:
> >
> > NoReverseMatch
> >
> >
> > Reverse for 'album_detail' with arguments '('', )' not
> found. 1 pattern(s) tried: ['@(?P[^/]+)/album/(?P[^/]+)/$']
> >
>
> This will guide you towards a solution:
>
>
> https://betterprogramming.pub/how-to-ask-questions-about-programming-dcd948fcd2bd
>
> Kind regards,
>
> Kasper Laudrup
>
>
> >
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Django users" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> > an email to django-users+unsubscr...@googlegroups.com
> > .
> > To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/django-users/CANec_ReVnw%2Bn3ss4UbhVLaZeZxobLzXUgMdG-T5bN7vze8%2Bd0w%40mail.gmail.com
> > <
> https://groups.google.com/d/msgid/django-users/CANec_ReVnw%2Bn3ss4UbhVLaZeZxobLzXUgMdG-T5bN7vze8%2Bd0w%40mail.gmail.com?utm_medium=email_source=footer
> >.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a7d1f22d-15e9-1a53-77ec-aa1fea4d4bbd%40stacktrace.dk
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPXsoruQje%3DBAq5pzLFYMWz-HUVUdK%3Dy%2BJ_WDT5zKrO2J7UqpA%40mail.gmail.com.