Re: Django Tutorial: "NoReverseMatch" Error

2018-07-19 Thread roflcopterpaul
I truly appreciate the suggestions, Melvyn. Thanks so much! On Thu, Jul 19, 2018, 10:28 PM Melvyn Sopacua wrote: > On donderdag 19 juli 2018 20:39:15 CEST roflcopterpaul wrote: > > Yeah, I just discovered that after posting this. I'm ashamed to admit > that > > single error had me baffled for da

Re: Django Tutorial: "NoReverseMatch" Error

2018-07-19 Thread Melvyn Sopacua
On donderdag 19 juli 2018 20:39:15 CEST roflcopterpaul wrote: > Yeah, I just discovered that after posting this. I'm ashamed to admit that > single error had me baffled for days. No shame needed, because at some point you read over and over it and read the same wrong thing as right in your brain.

Re: Django Tutorial: "NoReverseMatch" Error

2018-07-19 Thread roflcopterpaul
Yeah, I just discovered that after posting this. I'm ashamed to admit that single error had me baffled for days. Thank you so much for the quick reply! On Thu, Jul 19, 2018, 11:35 AM Dylan Reinhold wrote: > You are missing the > in the path > path(' Should be > path('/results/', views.ResultsVi

RE: Django Tutorial: "NoReverseMatch" Error

2018-07-19 Thread Matthew Pava
etail'), # ex: /polls/5/results/ path('/vote/', views.vote, name='vote'), ] The red line should probably have this path: /results/ From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of roflcopterpaul Sent: Thursday, July 19, 2

Re: Django Tutorial: "NoReverseMatch" Error

2018-07-19 Thread Dylan Reinhold
You are missing the > in the path path('/results/', views.ResultsView.as_view(), name='results'), On Thu, Jul 19, 2018 at 11:18 AM, roflcopterpaul wrote: > Hello, everyone! I have run into a problem I cannot figure out. I have > spent days searching online and trying different things in my code,

Django Tutorial: "NoReverseMatch" Error

2018-07-19 Thread roflcopterpaul
Hello, everyone! I have run into a problem I cannot figure out. I have spent days searching online and trying different things in my code, but I cannot figure out where this problem is stemming from. I would truly appreciate any insights. Admittedly, I am scrub enough that I'm not even sure of