tango_with_django_19
tango_with_django_19 copied to clipboard
A beginners guide to web programming with Python / Django 1.9
One Page 14 under 2.3 Virtual Environments, last paragraph, first sentence: "Setting up a virtual environment is not necessarily but it is highly recommended." Should read "Setting up a virtual...
I'm currently on Chapter 15, and facing problem setting a class based view, there were no hints for the same too in the repository. Would making a PR for the...
here is my code(btw, i was completed fork by your digital book ) and it occured the error like the bottom django.core.urlresolvers.NoReverseMatch: Reverse for 'show_category' with arguments '('',)' and keyword...
I have been following along with this excellent walk-through and an impressed with the work. Only one thing lacking that I have really been struggling with and that is how...
Hey guys, I fixed some bugs I found: -The like button wasn't working -And the add page link was not accepting https urls
Even with cleaning the data provided, it's still saved as the original input ``` def clean(self): cleaned_data = self.cleaned_data url = cleaned_data.get('url') # if url is not empty and doesn't...
I think the quote character isn't escaped, so I changed it to a single quote instead of double quote.
Since ```request.session.get(keyword, defaultvalue)``` can already provide default values, ```get_server_side_cookie``` is removed.
Fixed wrong url "like_category" to just "like", so ajax url to give a like "/rango/like/?category_id=6" become available.