templates
| ....a.html
|.....admin
|..... index.html
|..... b.html
in google app engine templates, i can use this to extends b.html in index.html:
{% extends 'b.html' %}
but how to extends a.html in index.html.
thanks