Best way of linking to a page in Django

前端 未结 5 2161
臣服心动
臣服心动 2021-02-08 20:02

I managed to create a URL tag for my index. But right now I\'m confused how to add links to other pages.

I put this on my urls.py

url(r\         


        
5条回答
  •  隐瞒了意图╮
    2021-02-08 20:43

    Create a new URL in the same format and give that name instead of index.

    Eg:

    url(r'^$', 'index', name='index'),
    url(r'^new/page/$', 'new', name='new_page'),
    
    {% url 'new_page' %}
    

提交回复
热议问题