mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-04-15 11:01:10 +08:00
22 lines
450 B
HTML
22 lines
450 B
HTML
{% extends "base-left.html" %}
|
||
{% load staticfiles %}
|
||
|
||
|
||
{% block content %}
|
||
|
||
<!-- Main content -->
|
||
<section class="content">
|
||
系统管理首页:system_index,content是页面定义的主要区域,
|
||
头部和底部内容以及导航栏都是通过模板继承的,之后的所有
|
||
功能前端页面都是在content内进行编辑。
|
||
</section>
|
||
|
||
<!-- /.content -->
|
||
|
||
{% endblock %}
|
||
|
||
|
||
{% block javascripts %}
|
||
|
||
{% endblock %}
|