- 论坛徽章:
- 0
|
question_base.html
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- </head>
- <body>123{% block start %}{% endblock %}</body>
- </html>
复制代码
survey_ing.html
- {% extends "question_base.html" %}
- {% block start %}
- survey_ing.html
- {% endblock %}
复制代码
survey_single.html
- {% extends "survey_ing.html" %}
- {% block start %}
- survey_single.html
- {% endblock %}
复制代码
1.py:
- def _show_question(request):
- c = {}
- template_file='survey_single.html'
- return render_to_response(template_file, c)
复制代码
2.py:
- def _show_question(request):
- c = {}
- template_file='survey_ing.html'
- return render_to_response(template_file, c)
复制代码
1.py 的时候页面 123 和2.py出来的123 不能重叠在一起 也就是不在一个位置 总会偏一点
survey_single.html是继承了一个继承quest_base.html的survey_ing.html
survey_ing.html是继承了question_base.html
为什么都是从一个地方继承过来的 2个页面却有偏差?如何解决?
怎样才 能让2个页面能够重叠? |
|