Have found one or two people on the interwebs with similar problems, but haven't seen a solution posted anywhere. I'm getting a build error from the code/template below, but can't figure out where the issue is or why it's occurring. It appears that the template isn't recognizing the function, but don't know why this would be occurring. Any help would be greatly appreciated - have been pounding my against the keyboard for two nights now.

Function:

@app.route('/viewproj/<proj>', methods=['GET','POST'])
def viewproj(proj):

...

Template Excerpt:

{% for project in projects %}
  <li>
<a href="{{ url_for('viewproj', proj=project.project_name) }}">
{{project.project_name}}</a></li>
{% else %}
No projects
{% endfor %}

Error log: https://gist.github.com/1684250

EDIT: Also wanted to include that it's not recognizing the variable "proj" when building the URL, so it's just appending the value as a parameter. Here's an example: //myproject/viewproj?projname=what+up

Last few lines: [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] File "/srv/www/myproject.com/myproject/templates/layout.html", line 103, in top-level template code, referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] {% block body %}{% endblock %}, referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] File "/srv/www/myproject.com/myproject/templates/main.html", line 34, in block "body", referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] , referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] File "/usr/lib/python2.7/dist-packages/flask/helpers.py", line 195, in url_for, referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] return ctx.url_adapter.build(endpoint, values, force_external=external), referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] File "/usr/lib/pymodules/python2.7/werkzeug/routing.py", line 1409, in build, referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] raise BuildError(endpoint, values, method), referer: xx://myproject.com/ [Wed Jan 25 09:47:34 2012] [error] [client 199.58.143.128] BuildError: ('viewproj', {'proj': '12th'}, None), referer: xx://myproject.com/

link|improve this question
Are you, by any chance, using blueprints? Are there any other routes defined for the viewproj function? – Alex Morega Jan 26 at 19:04
Nope. I'm still pretty early on - there's only 4 views each with their own route – Rob Jan 26 at 19:33
Try removing stuff from your project, bit by bit, until you reduce the problem to a minimal test case. – Alex Morega Jan 27 at 12:31
feedback

2 Answers

Seeing as you specify which methods are available on that endpoint I think you will have to pass which method you want into url_for.

url_for('viewproj', proj=project.project_name, method='GET')
link|improve this answer
I had actually pulled out the specification and was getting the same error. I'm looking into specifying it solely as "GET" to see if that makes a difference, but doesn't seem to be helping . – Rob Jan 27 at 9:15
This is also causing it to append method='GET' to the url: //myproject.com/viewproj?projname=what+up&method=GET – Rob Jan 27 at 9:26
It's '_method' not 'method'. – sojin Jan 27 at 13:44
That should be 'methods'. – ento Apr 4 at 16:02
feedback

See if 'project.project_name' is resolving correctly in the template. Are you passing 'projects' correctly to template? Hard code some value for 'proj' instead and see the url is getting generated. Something like:-

<a href="{{ url_for('viewproj', proj='new_project') }}">new project</a>
link|improve this answer
Thanks for the help. When I pass 'new_project' as a string it builds as //myproject/viewproj?projname=new_project. Would that imply the issue is on the view/routing side? – Rob Jan 27 at 17:25
Your url_for() argument name in template is not matching with your view function. You are using 'projname' in your template, not 'proj' as you defined in you view. i.e instead of {{ url_for('viewproj', projname='new_project') }} use {{ url_for('viewproj', proj='new_project') }}. – sojin Jan 28 at 1:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.