daily pastebin goal
80%
SHARE
TWEET

Title in django template

a guest Dec 31st, 2013 2 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # in views.py
  2. from django.shortcuts import render
  3.  
  4. def base(request):
  5.     context = {
  6.         'title': 'Welcome!'
  7.     }
  8.     return render(request, 'base.html', context)
  9.  
  10. # base.html
  11. {% if title %} {{title}} {% endif %}
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
 
Top