Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
9087b413
Commit
9087b413
authored
Jan 03, 2015
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改 文平提交
parent
8682d7c6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
75 deletions
+19
-75
base.html
templates/base.html
+0
-0
base2.html
templates/base2.html
+0
-44
nav.html
templates/nav.html
+7
-19
nav_bar_header.html
templates/nav_bar_header.html
+0
-0
script.html
templates/script.html
+11
-11
useradd.html
templates/useradd.html
+1
-1
No files found.
templates/base.html
View file @
9087b413
This diff is collapsed.
Click to expand it.
templates/base2.html
deleted
100644 → 0
View file @
8682d7c6
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Jumpserver | 开源跳板机系统
</title>
<link
rel=
"shortcut icon"
href=
"/static/img/facio.ico"
type=
"image/x-icon"
>
{% include "link_css.html" %}
</head>
<body
class=
"skin-1"
>
<div
id=
"wrapper"
>
<nav
class=
"navbar-default navbar-static-side"
role=
"navigation"
>
<div
class=
"sidebar-collapse"
>
{% include "nav.html" %}
</div>
</nav>
<div
id=
"page-wrapper"
class=
"gray-bg"
>
<div
class=
"row border-bottom"
>
<nav
class=
"navbar navbar-static-top"
role=
"navigation"
style=
"margin-bottom: 0"
>
{% include "nav_bar_header.html" %}
</nav>
</div>
<div
class=
"row wrapper border-bottom white-bg page-heading"
>
{% include "nav_cat_bar.html" %}
</div>
<div
class=
"wrapper wrapper-content"
>
{{ content }}
</div>
{% include "footer.html" %}
</div>
</div>
{% include "script.html" %}
</body>
</html>
templates/nav.html
View file @
9087b413
<nav
class=
"navbar-default navbar-static-side"
role=
"navigation"
>
<div
class=
"sidebar-collapse"
>
<ul
class=
"nav"
id=
"side-menu"
>
<li
class=
"nav-header"
>
<div
class=
"dropdown profile-element"
>
<span>
<img
alt=
"image"
class=
"img-circle"
src=
"/static/img/profile_small.jpg"
/>
</span>
<a
data-toggle=
"dropdown"
class=
"dropdown-toggle"
href=
"#"
>
<span
class=
"clear"
>
<span
class=
"block m-t-xs"
>
<strong
class=
"font-bold"
>
Admin
</strong>
</span>
<span
class=
"text-muted text-xs block"
>
SuperUser
<b
class=
"caret"
></b></span>
</span>
</a>
<ul
class=
"dropdown-menu animated fadeInRight m-t-xs"
>
<li><a
href=
"/profile/"
>
Profile
</a></li>
<li><a
href=
"/contacts/"
>
Contacts
</a></li>
<li
class=
"divider"
></li>
<li><a
href=
"/login/"
>
Logout
</a></li>
</ul>
</div>
<div
class=
"logo-element"
>
JS+
</div>
</li>
{% include 'nav_li_profile.html' %}
<li>
<a
href=
"css_animation.html"
><i
class=
"fa fa-th-large"
></i>
<span
class=
"nav-label"
>
仪表盘
</span><span
class=
"label label-info pull-right"
></span></a>
<!--<a href="index.html"><i class="fa fa-th-large"></i> <span class="nav-label">仪表盘</span> <span class="fa arrow"></span></a>
<ul class="nav nav-second-level">
...
...
@@ -74,3 +59,5 @@
</li>
</ul>
</div>
</nav>
\ No newline at end of file
templates/nav_bar_header.html
View file @
9087b413
This diff is collapsed.
Click to expand it.
templates/script.html
View file @
9087b413
<!-- Mainly scripts -->
<script
src=
"/static/js/jquery-2.1.1.js"
></script>
<script
src=
"/static/js/bootstrap.min.js"
></script>
<script
src=
"/static/js/plugins/metisMenu/jquery.metisMenu.js"
></script>
<script
src=
"/static/js/plugins/slimscroll/jquery.slimscroll.min.js"
></script>
<script
src=
"/static/js/jquery-2.1.1.js"
></script>
<script
src=
"/static/js/bootstrap.min.js"
></script>
<script
src=
"/static/js/plugins/metisMenu/jquery.metisMenu.js"
></script>
<script
src=
"/static/js/plugins/slimscroll/jquery.slimscroll.min.js"
></script>
<!-- Peity -->
<script
src=
"/static/js/plugins/peity/jquery.peity.min.js"
></script>
<!-- Peity -->
<script
src=
"/static/js/plugins/peity/jquery.peity.min.js"
></script>
<!-- Custom and plugin javascript -->
<script
src=
"/static/js/inspinia.js"
></script>
<script
src=
"/static/js/plugins/pace/pace.min.js"
></script>
<!-- Custom and plugin javascript -->
<script
src=
"/static/js/inspinia.js"
></script>
<script
src=
"/static/js/plugins/pace/pace.min.js"
></script>
<!-- Peity -->
<script
src=
"/static/js/demo/peity-demo.js"
></script>
<!-- Peity -->
<script
src=
"/static/js/demo/peity-demo.js"
></script>
templates/useradd.html
View file @
9087b413
{% extends 'base.html' %}
{% block content %}
{% include 'nav_
bar_heade
r.html' %}
{% include 'nav_
cat_ba
r.html' %}
<div
class=
"row"
>
<div
class=
"col-lg-10"
>
<div
class=
"ibox float-e-margins"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment