I have a line in a Django form :
{% for aa in my_array %}
which seems to be triggering this error :
Template error
Caught an exception while rendering: Reverse for 'dev_env.profiles.views.viewPlan' with arguments '('',)' and keyword arguments '{}' not found.
What does this error message really mean?
I suspect that either the line is correct, but the error message is wrong. Or the error is real but this line is a red-herring.
What on earth should I be looking for?
Update : Paulo sorted this, below.
In fact, I had a {% url viewPlan planId %} a couple of lines away (so the reported error line was wrong), but the error was triggered because planId was empty in this case.