URL テンプレート タグを試していたところ、次のような問題に遭遇しました。
Caught NoReverseMatch while rendering: Reverse for ''location'' with arguments
'(<City: New York>,)' and keyword arguments '{}' not found.
私のテンプレートファイルには次のものがあります:
{% url 'location' city_name=city.name %}
url.py
url(r'^location/(?P<city_name>.*)/$', CityView.as_view(), name="location"),
models.py
def get_absolute_url(self):
return "/location/%s" % self.name