I had similar error messages in {% url password_reset_link %} before - is this the first {% url %} in your template?
It looks like this view is being imported somewhere (perhaps elsewhere from urls.py?). Have you imported this view into another views.py file, for example?). A quick way to find files containing this is to use grep (on Linux / Mac) on the command line at the root of your site:
$ grep -r "my_view_two" .
This will lead to the search for this line in all files of your project (if I understand you correctly, it should not be).
source share