django-beginners-guide icon indicating copy to clipboard operation
django-beginners-guide copied to clipboard

A Complete Beginner's Guide to Django - Code Samples

Results 20 django-beginners-guide issues
Sort by recently updated
recently updated
newest added

decouple.UndefinedValueError: SECRET_KEY not found. Declare it as envvar or define a default value。

I am not able to implement Delete a Topic or Replies. tried various ways but getting errors. please help me out Thanks

Just want to put in a big thank you for making a clean sample like this it's neat and very useful. Cheers :)

My main urls.py file looks like this... urlpatterns = [ url(r'^$', views.home, name='home'), # the route for home url(r'^signup/$', accounts_views.signup, name='signup'), url('r^logout/$', auth_views.LogoutView.as_view(), name='logout'), # this is a Django class-based...

![screenshot from 2018-06-25 23-16-03](https://user-images.githubusercontent.com/34393059/41866614-52785ac2-78ce-11e8-981a-d1662804091e.png)

I got a TypeError at /signup/ sequence item 3: expected str instance, BoundField found How can I fix this bug? In django 1.11, It's ok. Thanks a lot

Hi Vitor Many thanks for your helpful tutorial about django. I followed part 3 step by step, but unfortunately form widgets is not rendered in html page(new page). What is...

Hi Vitor , I follow your tutorails is good till A Complete Beginner's Guide to Django - Part 4 section "Template Tags". it shows the error as below: ![boundfield found](https://user-images.githubusercontent.com/3251655/37500086-75fa8b30-2902-11e8-9fde-0186d0bc075e.png)...

Hi, victor. I replaced widget-tweaks with crispy-forms yesterday. It’s ok. But my issue is still there. I dont know what the error ‘boundfield found’ for and how to fix it.

Hi Vitor, Thank you for your amazing Django tutorial ! I think it could be nice to add Python3 static type annotation to the code. The zulip (https://github.com/zulip/zulip) code has...