我有一个应用程序,有两个目的 - 显示我公司的成员和中心。它们的工作方式完全相同,在过滤模型时保存不同的变量。问题是我无法将当前网址添加到模板中以便在我的自定义面包屑中使用。
我的主urls.py中有这个urlpattern:
# --- urls.py ----
url(r'^find-member/', include('company.directory.urls'), \
{'which_app': 'members'}, name='find_member'),
url(r'^find-centre/', include('company.directory.urls'), \
{'which_app': 'training'}, name='find_centre'),
链接到我的应用urls.py:
# ---- company/urls.py ----
from django.conf.urls.defaults import *
urlpatterns = patterns('company.directory.views',
url(r'^$', 'index'),
url(r'^(?P<slug>\w+)/$', 'index'),
)
在我的模板上我希望创建一个指向第一个urlpatten的链接,以便与我的自定义面包屑一起使用
<a href='/find-member/'>members</a>
或
<a href='/find-centre/'>Centre</a>
基于我正在使用该应用的网址。
我的观点如下:
# ---- company/view.py ----
def index(request, which_app=None, slug=None):
#r = reverse('' ,kwargs={'which_app'=training )
s = "%s %s" % (which_app, slug)
return render_to_response('directory/index.html', locals())
我想根据传递给def的which_app
变量找到url。
我似乎无法使用resolve()
或reverse()
。我可能做错了。我现在还没有真正展示的模板。
有人有什么建议吗?我喜欢一些建议。
提前致谢。