export html to pdf

2016-09-14 Thread Saeon Tao
Hi guys,

Does someone have a great suggestion for exporting an html div and save to 
pdf? i have found many options, only some of which are integrated with 
django.
In your experience, which is the best one to use for django==1.6.2 ? should 
i choose an integrated one? or is it possible to use jquery alone for this?

thank you



-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2a6b6392-4603-4569-8c30-2f8a7d9d7391%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


creating a loginpage

2016-09-14 Thread Timothy Steele
Instead of providing the view itself, i want to  pass its module path as a 
string in the urls.py file  as the code below


urlpatterns = ['',
 url(r'^$', main_page),
 url(r'^user/(\w+)/$', user_page),
 url(r'^login/$', 'django.contrib.auth.views.login'),
]

but it return this information
TypeError: view must be a callable or a list/tuple in the case of include()


please any help

below is also the HTML form .





Django Bookmark - User Login


User Login
{% if form.has_errors %}
Your username and password didn't match.

{% endif %}

Username:{{ form.username }}
Password:{{ form.password }}






-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bc8c139d-7997-44d5-a1a2-183d56eb1a59%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: export html to pdf

2016-09-14 Thread 06userit
Hello,
To generate pdf document from html pages, I use weasyprint 
http://weasyprint.org/ for my project .
Hope this helps.
Cheers.

>
>
>
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/06c2a2c7-0d3d-4434-8c85-8bfc7b70385c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to populate self._reverse_dict with a default language code ?

2016-09-14 Thread Etienne Robillard
Hi, 

Is there a way to populate self._reverse_dict to contain a default 
language_code in case
the setting USE_I18N is set to False?

See: http://dpaste.com/3Q1NHXA

Regards,

Etienne


-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6453984f-999c-4404-916e-31bb9c7f69d8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: creating a loginpage

2016-09-14 Thread Tim Graham
Import the view: from django.contrib.auth.views import login
and replace 'django.contrib.auth.views.login' with a reference to the login 
function.

from django.contrib.auth.views import login

urlpatterns = [ <-- remove the empty string on this line
 ...
 url(r'^login/$', login),
]

On Wednesday, September 14, 2016 at 11:44:14 AM UTC-4, Timothy Steele wrote:
>
> Instead of providing the view itself, i want to  pass its module path as a 
> string in the urls.py file  as the code below
>
>
> urlpatterns = ['',
>  url(r'^$', main_page),
>  url(r'^user/(\w+)/$', user_page),
>  url(r'^login/$', 'django.contrib.auth.views.login'),
> ]
>
> but it return this information
> TypeError: view must be a callable or a list/tuple in the case of include()
>
>
> please any help
>
> below is also the HTML form .
>
> 
> 
> 
> 
> Django Bookmark - User Login
> 
> 
> User Login
> {% if form.has_errors %}
> Your username and password didn't match.
>
> {% endif %}
> 
> Username:{{ form.username }}
> Password:{{ form.password }}
> 
> 
> 
> 
> 
>
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/83980281-a168-497b-bc67-ae2f1037bfa8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: creating a loginpage

2016-09-14 Thread Andrea D'Amore
On 14 September 2016 at 17:44, Timothy Steele
 wrote:
> Instead of providing the view itself, i want to  pass its module path as a
> string in the urls.py file  as the code below
>
> urlpatterns = ['',
>  url(r'^$', main_page),
>  url(r'^user/(\w+)/$', user_page),
>  url(r'^login/$', 'django.contrib.auth.views.login'),
> ]

Use include() [1] for that, there are further info at [2] including a
shorthand for registering several urls at once and a login form
template.


[1]: https://docs.djangoproject.com/en/1.10/ref/urls/#include
[2]: https://docs.djangoproject.com/en/1.10/topics/auth/default/

-- 
Andrea

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMonFrTVuJqx3qdiptYnb%2BLbcwtrnJs9dojwf-%3DxHf-GyrGduQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: creating a loginpage

2016-09-14 Thread Timothy Steele
Tim Graham, I did it but i get back this error *login() missing 1 required 
positional argument: 'user' *

On Wednesday, September 14, 2016 at 4:44:14 PM UTC+1, Timothy Steele wrote:
>
> Instead of providing the view itself, i want to  pass its module path as a 
> string in the urls.py file  as the code below
>
>
> urlpatterns = ['',
>  url(r'^$', main_page),
>  url(r'^user/(\w+)/$', user_page),
>  url(r'^login/$', 'django.contrib.auth.views.login'),
> ]
>
> but it return this information
> TypeError: view must be a callable or a list/tuple in the case of include()
>
>
> please any help
>
> below is also the HTML form .
>
> 
> 
> 
> 
> Django Bookmark - User Login
> 
> 
> User Login
> {% if form.has_errors %}
> Your username and password didn't match.
>
> {% endif %}
> 
> Username:{{ form.username }}
> Password:{{ form.password }}
> 
> 
> 
> 
> 
>
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/5e825c03-2a27-407b-aae9-3d389fbbf3ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: creating a loginpage

2016-09-14 Thread Timothy Steele
Thanks Tim it has work this time but can any one help me with a beginner 
book to learn Django please



On Wednesday, September 14, 2016 at 4:44:14 PM UTC+1, Timothy Steele wrote:
>
> Instead of providing the view itself, i want to  pass its module path as a 
> string in the urls.py file  as the code below
>
>
> urlpatterns = ['',
>  url(r'^$', main_page),
>  url(r'^user/(\w+)/$', user_page),
>  url(r'^login/$', 'django.contrib.auth.views.login'),
> ]
>
> but it return this information
> TypeError: view must be a callable or a list/tuple in the case of include()
>
>
> please any help
>
> below is also the HTML form .
>
> 
> 
> 
> 
> Django Bookmark - User Login
> 
> 
> User Login
> {% if form.has_errors %}
> Your username and password didn't match.
>
> {% endif %}
> 
> Username:{{ form.username }}
> Password:{{ form.password }}
> 
> 
> 
> 
> 
>
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/056f8dd1-258e-49de-b6af-63c7ab5807ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django exit function

2016-09-14 Thread Krešimir
Thank you, dear Sir!

I have tried as-user-atexit and it does not work with Ctrl+c event. Don't 
know about other exit events since my machine powers the light in question. 
So the light goes off when machine goes off anyway.

Maybe if I constantly check fo existance of some django system process?

On Saturday, September 10, 2016 at 5:27:21 PM UTC+2, Michal Petrucha wrote:
>
> On Sat, Sep 10, 2016 at 01:51:00AM -0700, Krešimir wrote: 
> > Hello, 
> > 
> > I have a turn_the_light_on() function that, well, turns on a light... 
> > I put it in wsgi.py (as suggested by internet) just before application = 
> > get_wsgi_application()call. 
> > 
> > Where can I put turn_the_light_off() function call to turn off the light 
> > when the application quits? 
> > 
> > Thank you! 
>
> In short, there is no such thing. In the most common scenario 
> (including yours, based on your email), Django is used as a WSGI 
> application, which starts up once, and then lives inside an 
> application server, which listens to requests, and translates them 
> into function calls. In that sense, Django is more of a passive thing, 
> that waits to be called with a request, which it then dutifully 
> processes, and finally enters the waiting state again. This happens 
> until the application server itself exits, but that is out of the 
> scope of what Django does. 
>
> Usually, application servers also just run indefinitely, until they 
> are killed. Or you can configure them to only run for a certain amount 
> of time. Or you can set them up to quit and restart after they process 
> a certain number of requests. Either way, the shutdown sequence 
> usually consists of just terminating the process. 
>
> What you are asking for sounds like it falls into the responsibility 
> of your application server. For example, Gunicorn has an ``on_exit`` 
> hook [1], or if you're using uwsgi, it also has some hooks [2], though 
> I haven't been able to extract much useful information at a glance, 
> but you might be able to find something that suits your need. 
>
> Cheers, 
>
> Michal 
>
>
> [1]: http://docs.gunicorn.org/en/latest/settings.html#on-exit 
> [2]: https://uwsgi-docs.readthedocs.io/en/latest/Hooks.html 
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/193f95a3-70f5-4561-b459-8eb0a4a209d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django exit function

2016-09-14 Thread Erik Cederstrand

> Den 14. sep. 2016 kl. 23.00 skrev Krešimir :
> 
> Thank you, dear Sir!
> 
> I have tried as-user-atexit and it does not work with Ctrl+c event. Don't 
> know about other exit events since my machine powers the light in question. 
> So the light goes off when machine goes off anyway.

You *might* be able to wrap the UWSGI event loop to catch KeyboardInterrupt, 
and set up a signal handler for SIGTERM, SIGABRT etc, but it seems a wee bit 
overkill for your needs.

> Maybe if I constantly check fo existance of some django system process?

That would be the simpler and more fool-proof solution. Use cron if you can 
live with 1-minute resolution, otherwise use one of the many available service 
monitoring tools to check if your WSGI server is running and call 
turn_the_light_off() if not.

Erik

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/E4E88B42-1817-4B11-BAFC-C5D44A08061E%40cederstrand.dk.
For more options, visit https://groups.google.com/d/optout.


Re: How to populate self._reverse_dict with a default language code ?

2016-09-14 Thread Mike Dewhirst

On 14/09/2016 11:43 PM, Etienne Robillard wrote:

Hi,

Is there a way to populate self._reverse_dict to contain a default 
language_code in case

the setting USE_I18N is set to False?


return self._reverse_dict.get("language_code", defaultlanguagecode)

or

try:
languagecode = failing_routine()
except KeyError:
languagecode = defaultlanguagecode






See: http://dpaste.com/3Q1NHXA

Regards,

Etienne


--
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 post to this group, send email to django-users@googlegroups.com 
.

Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6453984f-999c-4404-916e-31bb9c7f69d8%40googlegroups.com 
.

For more options, visit https://groups.google.com/d/optout.


--
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/adb30b20-174f-26c2-e8e5-571f0e86ef26%40dewhirst.com.au.
For more options, visit https://groups.google.com/d/optout.


Re: creating a loginpage

2016-09-14 Thread Tim Graham
Have you looked at the official Django documentation?

http://masteringdjango.com/django-book/ is another nice resource.

On Wednesday, September 14, 2016 at 2:22:18 PM UTC-4, Timothy Steele wrote:
>
> Thanks Tim it has work this time but can any one help me with a beginner 
> book to learn Django please
>
>
>
> On Wednesday, September 14, 2016 at 4:44:14 PM UTC+1, Timothy Steele wrote:
>>
>> Instead of providing the view itself, i want to  pass its module path as 
>> a string in the urls.py file  as the code below
>>
>>
>> urlpatterns = ['',
>>  url(r'^$', main_page),
>>  url(r'^user/(\w+)/$', user_page),
>>  url(r'^login/$', 'django.contrib.auth.views.login'),
>> ]
>>
>> but it return this information
>> TypeError: view must be a callable or a list/tuple in the case of 
>> include()
>>
>>
>> please any help
>>
>> below is also the HTML form .
>>
>> 
>> 
>> 
>> 
>> Django Bookmark - User Login
>> 
>> 
>> User Login
>> {% if form.has_errors %}
>> Your username and password didn't match.
>>
>> {% endif %}
>> 
>> Username:{{ form.username }}
>> Password:{{ form.password }}
>> 
>> 
>> 
>> 
>> 
>>
>>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3d2a0d8a-5ad8-4371-b93f-8e04c1fc2216%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Abridged summary of django-users@googlegroups.com - 35 updates in 12 topics

2016-09-14 Thread Constantine Covtushenko
Hi Juliana,

Did check this django doc
 page?
It describes basics of how to work with files. The same stands for images.

Also you can check one of the available extensions.
I was using django-filer.  It has a
great integration options for the admin site. And it allows to organise
your photos to folders/subfolders structure.

I hope that helps.


On Tue, Sep 13, 2016 at 6:13 PM, juliana kofi  wrote:

> hello am trying to upload photos on my blog how do i do that using django
> and python
>
> On Tue, Sep 13, 2016 at 3:10 PM,  wrote:
>
>> django-users@googlegroups.com
>> 
>>  Google
>> Groups
>> 
>> 
>> Today's topic summary
>> View all topics
>> 
>>
>>- Creation of default site not triggering post_save signal
>><#m_3915860844311027746_m_-517278597662460273_group_thread_0> - 2
>>Updates
>>- Problem with migration to Django 1.8
>><#m_3915860844311027746_m_-517278597662460273_group_thread_1> - 1
>>Update
>>- how to display models in templates
>><#m_3915860844311027746_m_-517278597662460273_group_thread_2> - 7
>>Updates
>>- Django with digital certificates
>><#m_3915860844311027746_m_-517278597662460273_group_thread_3> - 2
>>Updates
>>- Can't create editable foreign key field in Django admin: going to
>>give up on django
>><#m_3915860844311027746_m_-517278597662460273_group_thread_4> - 6
>>Updates
>>- Unexpected poor template performance
>><#m_3915860844311027746_m_-517278597662460273_group_thread_5> - 1
>>Update
>>- Database is not reset after StaticLiveServerTestCase (Django 1.9.5)
>><#m_3915860844311027746_m_-517278597662460273_group_thread_6> - 2
>>Updates
>>- Extracting the username:password from the host
>><#m_3915860844311027746_m_-517278597662460273_group_thread_7> - 3
>>Updates
>>- Import css in Django
>><#m_3915860844311027746_m_-517278597662460273_group_thread_8> - 4
>>Updates
>>- create connection error
>><#m_3915860844311027746_m_-517278597662460273_group_thread_9> - 2
>>Updates
>>- Django Ticketing Application
>><#m_3915860844311027746_m_-517278597662460273_group_thread_10> - 3
>>Updates
>>- Regex Validators doesn't validate while working in a shell
>><#m_3915860844311027746_m_-517278597662460273_group_thread_11> - 2
>>Updates
>>
>> Creation of default site not triggering post_save signal
>> 
>> Matt Thompson : Sep 12 07:59PM -0700
>>
>> Hi Simon,
>>
>> Thank you very much for your prompt reply! I've added the following to my
>> app, which seems to work just fine:
>>
>> @receiver(models.signals.post_migrate) ...more
>> 
>> Simon Charette : Sep 13 05:58AM -0700
>>
>> Hi Matt,
>>
>> The recommended pattern is to register signal receivers in your app
>> config's
>> ready() method[1]. From the Django documentation:
>>
>> > Where should this code live?
>>
>> > Strictly speaking, ...more
>> 
>> Back to top <#m_3915860844311027746_m_-517278597662460273_digest_top>
>> Problem with migration to Django 1.8
>> 
>> alessandro.henri...@labcodes.com.br: Sep 12 09:31AM -0700
>>
>> Hello,
>>
>> I'm currently trying to migrate a project from django 1.5.1 to the newest
>> version. I got stuck in the version 1.7. The only test that is not
>> passing
>> was made to try to get the e-mail ...more
>> 
>> Back to top <#m_3915860844311027746_m_-517278597662460273_digest_top>
>> how to display models in templates
>> 
>> Timothy Steele : Sep 13 12:33AM -0700
>>
>> please i try my best but i can display my models in a templates i have
>> just
>> created.
>>
>> *Please have a look at the codes in the models.py file*
>>
>> from django.db import models
>> from ...more
>> 
>> ludovic coues : Sep 13 09:44AM +0200
>>
>> Can you try this in your template ?
>>
>> {{ bookmarks|pprint }}
>> {% for bookmark in bookmaks %}
>> {{ bookmark|pprint }}
>> {% endfor %}
>>
>

Re: Abridged summary of django-users@googlegroups.com - 35 updates in 12 topics

2016-09-14 Thread Mandeep Tondak
Hey You can use AVTAR package for images upload

On Thu, Sep 15, 2016 at 11:04 AM, Constantine Covtushenko <
constantine.covtushe...@gmail.com> wrote:

> Hi Juliana,
>
> Did check this django doc
>  page?
> It describes basics of how to work with files. The same stands for images.
>
> Also you can check one of the available extensions.
> I was using django-filer.  It has
> a great integration options for the admin site. And it allows to organise
> your photos to folders/subfolders structure.
>
> I hope that helps.
>
>
> On Tue, Sep 13, 2016 at 6:13 PM, juliana kofi 
> wrote:
>
>> hello am trying to upload photos on my blog how do i do that using django
>> and python
>>
>> On Tue, Sep 13, 2016 at 3:10 PM,  wrote:
>>
>>> django-users@googlegroups.com
>>> 
>>>  Google
>>> Groups
>>> 
>>> 
>>> Today's topic summary
>>> View all topics
>>> 
>>>
>>>- Creation of default site not triggering post_save signal
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_0>
>>>- 2 Updates
>>>- Problem with migration to Django 1.8
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_1>
>>>- 1 Update
>>>- how to display models in templates
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_2>
>>>- 7 Updates
>>>- Django with digital certificates
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_3>
>>>- 2 Updates
>>>- Can't create editable foreign key field in Django admin: going to
>>>give up on django
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_4>
>>>- 6 Updates
>>>- Unexpected poor template performance
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_5>
>>>- 1 Update
>>>- Database is not reset after StaticLiveServerTestCase (Django 1.9.5)
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_6>
>>>- 2 Updates
>>>- Extracting the username:password from the host
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_7>
>>>- 3 Updates
>>>- Import css in Django
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_8>
>>>- 4 Updates
>>>- create connection error
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_9>
>>>- 2 Updates
>>>- Django Ticketing Application
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_10>
>>>- 3 Updates
>>>- Regex Validators doesn't validate while working in a shell
>>>
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_group_thread_11>
>>>- 2 Updates
>>>
>>> Creation of default site not triggering post_save signal
>>> 
>>> Matt Thompson : Sep 12 07:59PM -0700
>>>
>>> Hi Simon,
>>>
>>> Thank you very much for your prompt reply! I've added the following to
>>> my
>>> app, which seems to work just fine:
>>>
>>> @receiver(models.signals.post_migrate) ...more
>>> 
>>> Simon Charette : Sep 13 05:58AM -0700
>>>
>>> Hi Matt,
>>>
>>> The recommended pattern is to register signal receivers in your app
>>> config's
>>> ready() method[1]. From the Django documentation:
>>>
>>> > Where should this code live?
>>>
>>> > Strictly speaking, ...more
>>> 
>>> Back to top
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_digest_top>
>>> Problem with migration to Django 1.8
>>> 
>>> alessandro.henri...@labcodes.com.br: Sep 12 09:31AM -0700
>>>
>>> Hello,
>>>
>>> I'm currently trying to migrate a project from django 1.5.1 to the
>>> newest
>>> version. I got stuck in the version 1.7. The only test that is not
>>> passing
>>> was made to try to get the e-mail ...more
>>> 
>>> Back to top
>>> <#m_8633480200516075464_m_3915860844311027746_m_-517278597662460273_digest_top>
>>> how to display models in te