Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. djangoにjinja2のテンプレートを組み合わせた時、以下のようにURLをテンプレートに埋め込む
  2. url.py
  3. ```
  4. url(r'/index/$', index_view, name="main-view"),
  5. ```
  6.  
  7. template.jinja
  8. ```
  9. <a href="{{ url('main-view') }}"
  10. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement