mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-03 15:50:28 +00:00
* perf: 优化mfa 和登录 * perf: stash * stash * pref: 基本完成 * perf: remove init function * perf: 优化命名 * perf: 优化backends * perf: 基本完成优化 * perf: 修复首页登录时没有 toastr 的问题 Co-authored-by: ibuler <ibuler@qq.com> Co-authored-by: Jiangjie.Bai <32935519+BaiJiangJie@users.noreply.github.com>
19 lines
434 B
Python
19 lines
434 B
Python
{% extends '_without_nav_base.html' %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block body %}
|
|
<article>
|
|
<div class="" style="text-align: center; margin-bottom: 50px">
|
|
<h2>
|
|
{% block small_title %}
|
|
{% endblock %}
|
|
</h2>
|
|
</div>
|
|
<div>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</article>
|
|
{% endblock %}
|