views:

105

answers:

1

We are developing a web based application in python on google app engine platform. I have different pages in web site. What I want is to have a master page like functionality like we have in asp.net where I have just on template and all other pages will use that. How can I do this? I am a beginner in python

+3  A: 

If you're using Django (or at least Django templates), Django template inheritance may be what you're looking for.

Alex Martelli