我有以下聲明。django - 在forms.ValidationError()中使用urlpattern名稱
raise forms.ValidationError({'product_type':
[mark_safe('Product type <a href="/group/detail/%d/">N/A already exists</a> for this combination.' % na[0].product_group.id) ]})
這個程序有以下名爲url
url(r'^detail/(?P<pk>[0-9]+)/$', views.ProductGroupDetail.as_view(), name='group_detail'),
是否有使用{%url 'group_detail' %}
格式在href,而不是硬編碼的網址的方法?
謝謝。