0

私のadmin.pyには次のものがあります:

def get_urls(self):
    urls = super(AggregationProxyProviderAdmin, self).get_urls()
    my_urls = patterns('', 
        url(r'^(\d+)/import_proxies/$',
            self.admin_site.admin_view(self.import_proxies_from_file), 
            name="import_proxies", 
        ), 
    )
    return my_urls + urls

change_form.html に私が持っている

<a href="{% url opts|admin_urlname:'import_proxies' original.pk|admin_urlquote %}" class="btn importlink">

エラーが発生しました:

Exception Type:     NoReverseMatch
Exception Value:    

Reverse for 'aggregation_aggregationproxyprovider_import_proxies' with arguments '(1L,)' and keyword arguments '{}' not found.

誰かが問題がどこにあるのか説明できますか? ありがとう

4

1 に答える 1