我正在学习django。我有一个包含数据表的站点,该表具有以下html模板:
df.loc[:, df.columns.isin(['nnn', 'mmm', 'yyyy', 'zzzzzz'])]
yyyy nnn mmm
0 10 5 5
1 9 3 4
2 8 7 0
当我尝试通过添加
继承其他模板时{% load static %}
{% load table_tags %}
<link href="{% static 'table/css/bootstrap.min.css' %}" rel="stylesheet">
<script src="{% static 'table/js/jquery.min.js' %}"></script>
<script src="{% static 'table/js/bootstrap.min.js' %}"></script>
<link href="{% static 'table/css/datatable.bootstrap.css' %}" rel="stylesheet">
<script src="{% static 'table/js/jquery.browser.min.js' %}"></script>
<script src="{% static 'table/js/jquery.dataTables.min.js' %}"></script>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Impala query metrics</title>
</head>
<body>
<div class="container" style="margin: 10px 10px 10px">
<h1>Impala Query metrics</h1>
<br />
{% render_table people %}
</div>
<a href="/logout">logout</a>
{% block content %} {% endblock %}
</body>
到第一行,它继承了base.html但我的原始数据表消失了。 有关如何保留原始数据表或指向正确文档的任何帮助将不胜感激。