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
709552f1
Commit
709552f1
authored
Apr 02, 2017
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Fixture] 添加首页
parent
66a2262e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
119 additions
and
262 deletions
+119
-262
user.py
apps/assets/models/user.py
+3
-0
asset_detail.html
apps/assets/templates/assets/asset_detail.html
+35
-0
asset_tag_create.html
apps/assets/templates/assets/asset_tag_create.html
+0
-125
asset_tag_detail.html
apps/assets/templates/assets/asset_tag_detail.html
+0
-0
asset_tags_list.html
apps/assets/templates/assets/asset_tags_list.html
+0
-125
asset_update.html
apps/assets/templates/assets/asset_update.html
+0
-1
urls.py
apps/jumpserver/urls.py
+3
-2
views.py
apps/jumpserver/views.py
+70
-0
task_detail.html
apps/ops/templates/ops/task_detail.html
+1
-1
api.py
apps/perms/api.py
+2
-2
_base_list.html
apps/templates/_base_list.html
+1
-1
_nav.html
apps/templates/_nav.html
+1
-1
index.html
apps/templates/index.html
+0
-0
user_group_detail.html
apps/users/templates/users/user_group_detail.html
+1
-1
requirements.txt
requirements/requirements.txt
+1
-2
clean_migrations.sh
utils/clean_migrations.sh
+1
-1
No files found.
apps/assets/models/user.py
View file @
709552f1
...
...
@@ -254,3 +254,6 @@ class SystemUser(models.Model):
except
IntegrityError
:
print
(
'Error continue'
)
continue
apps/assets/templates/assets/asset_detail.html
View file @
709552f1
...
...
@@ -225,6 +225,41 @@
</table>
</div>
</div>
<div
class=
"panel panel-warning"
>
<div
class=
"panel-heading"
>
<i
class=
"fa fa-info-circle"
></i>
{% trans 'System users' %}
</div>
<div
class=
"panel-body"
>
<table
class=
"table group_edit"
id=
"add-asset2systemuser"
>
<tbody>
<form>
<tr
class=
"no-borders-tr"
>
<td
colspan=
"2"
>
<select
data-placeholder=
"{% trans 'Select system user' %}"
class=
"select2"
style=
"width: 100%"
multiple=
""
tabindex=
"4"
>
{% for system_user in system_users_remain %}
<option
value=
"{{ system_user.id }}"
id=
"opt_{{ system_user.id }}"
>
{{ system_user.name }}
</option>
{% endfor %}
</select>
</td>
</tr>
<tr
class=
"no-borders-tr"
>
<td
colspan=
"2"
>
<button
type=
"button"
class=
"btn btn-warning btn-sm btn-system-user"
>
{% trans 'Associate' %}
</button>
</td>
</tr>
</form>
{% for system_user in system_users %}
<tr>
<td
><b
class=
"bdg_group"
data-sid=
{{
system_user
.
id
}}
>
{{ system_user.name }}
</b></td>
<td>
<button
class=
"btn btn-danger btn-xs pull-right btn_leave_system"
type=
"button"
style=
"float: right;"
><i
class=
"fa fa-minus"
></i></button>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endif %}
</div>
</div>
...
...
apps/assets/templates/assets/asset_tag_create.html
deleted
100644 → 0
View file @
66a2262e
{% extends 'base.html' %}
{% load i18n %}
{% load static %}
{% load bootstrap %}
{% block custom_head_css_js %}
<link
href=
"{% static 'css/plugins/select2/select2.min.css' %}"
rel=
"stylesheet"
>
<script
src=
"{% static 'js/plugins/select2/select2.full.min.js' %}"
></script>
<style>
div
.dataTables_wrapper
div
.dataTables_filter
,
.dataTables_length
{
float
:
left
;
}
</style>
{% endblock %}
{% block content %}
<div
class=
"wrapper wrapper-content animated fadeInRight"
>
<div
class=
"row"
>
<div
class=
"col-sm-10"
>
<div
class=
"ibox float-e-margins"
>
<div
id=
"ibox-content"
class=
"ibox-title"
>
<h5>
{{ action }}
</h5>
<div
class=
"ibox-tools"
>
<a
class=
"collapse-link"
>
<i
class=
"fa fa-chevron-up"
></i>
</a>
<a
class=
"dropdown-toggle"
data-toggle=
"dropdown"
href=
"#"
>
<i
class=
"fa fa-wrench"
></i>
</a>
<a
class=
"close-link"
>
<i
class=
"fa fa-times"
></i>
</a>
</div>
</div>
<div
class=
"ibox-content"
>
<div
class=
"panel blank-panel"
>
<div
class=
"panel-body"
>
<div
class=
"tab-content"
>
<div
id=
"tab-1"
class=
"ibox float-e-margins tab-pane active"
></div>
<form
id=
"tagForm"
method=
"post"
class=
"form-horizontal"
>
{% csrf_token %}
<h3
class=
"widget-head-color-box"
>
基本信息
</h3>
{{ form.name|bootstrap_horizontal }}
<div
class=
"form-group"
>
<label
class=
"col-sm-2 control-label"
id=
"asset_on_count"
>
关联的资产({{ assets_count }})
</label>
<div
class=
"col-sm-9"
id=
"asset_sed"
>
<div
class=
"form-asset-on"
id=
"add_asset"
>
<p
id=
"asset_on_p"
>
{% for asset in assets_on_list %}
<button
name=
'asset_hostname'
title=
'{{ asset.ip}}'
type=
'button'
class=
'btn btn-default btn-xs'
>
{{ asset.hostname }}
</button>
{% endfor %}
</p>
</div>
</div>
</div>
<div
class=
"form-group"
>
<div
class=
"col-sm-4 col-sm-offset-5"
>
<button
class=
"btn btn-white"
type=
"reset"
>
重置
</button>
<button
class=
"btn btn-primary"
type=
"submit"
>
提交
</button>
<div
id=
'box2'
>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 模态框(Modal) -->
<div
class=
"modal fade"
id=
"modal"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-lg"
>
<div
class=
"modal-content"
id=
"box"
>
<!--此部分为主体内容,将远程加载进来-->
</div>
</div>
</div>
{% endblock %}
{% block custom_foot_js %}
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
()
{
$
(
'.select2'
).
select2
();
$
(
'.select2-system-user'
).
select2
();
})
$
(
'#add_asset'
).
on
(
'click'
,
function
(){
$
(
'#modal'
).
modal
(
'show'
);
});
$
(
'#modal'
).
modal
({
show
:
false
,
backdrop
:
'static'
,
keyboard
:
'false'
,
remote
:
"{% url 'assets:asset-modal-list' %}?tag_id={{ tag_id }}"
,
});
$
(
'#modal'
).
on
(
'show.bs.modal'
,
function
(){
//alert('当调用show方法时,立即触发;')
});
$
(
'#modal'
).
on
(
'shown.bs.modal'
,
function
(){
//alert('当弹窗完全加载完后,再触发;')
});
$
(
'#modal'
).
on
(
'hide.bs.modal'
,
function
(){
//alert('当关闭时,立即触发;')
});
$
(
'#modal'
).
on
(
'hidden.bs.modal'
,
function
(){
//alert('当关完全关闭后,再触发;')
});
$
(
'#modal'
).
on
(
'loaded.bs.modal'
,
function
(){
//alert('当远程数据加载完毕后,再触发;')
});
</script>
{% endblock %}
\ No newline at end of file
apps/assets/templates/assets/asset_tag_detail.html
deleted
100644 → 0
View file @
66a2262e
This diff is collapsed.
Click to expand it.
apps/assets/templates/assets/asset_tags_list.html
deleted
100644 → 0
View file @
66a2262e
{% extends '_base_list.html' %}
{% load i18n static %}
{% block custom_head_css_js %}
<link
href=
"{% static 'css/plugins/select2/select2.min.css' %}"
rel=
"stylesheet"
>
<script
src=
"{% static 'js/plugins/select2/select2.full.min.js' %}"
></script>
{% endblock %}
{#{% block content_left_head %}#}
{#
<a
href=
"{% url 'assets:asset-tag-create' %}"
class=
"btn btn-sm btn-primary "
>
{% trans "Create tag" %}
</a>
#}
{#{% endblock %}#}
{#{% block table_head %}#}
{#
<th
class=
"text-center"
>
#}
{#
<input
type=
"checkbox"
id=
"check_all"
onclick=
"checkAll('check_all', 'checked')"
>
#}
{#
</th>
#}
{#
<th
class=
"text-center"
><a
href=
"{% url 'assets:asset-tag-list' %}?sort=name"
>
{% trans 'Tag Name' %}
</a></th>
#}
{#
<th
class=
"text-center"
>
{% trans 'Asset num' %}
</th>
#}
{#
<th
class=
"text-center"
></th>
#}
{#{% endblock %}#}
{#{% block table_body %}#}
{# {% for asset_tag in asset_tags_list %}#}
{#
<tr
class=
"gradeX"
>
#}
{#
<td
class=
"text-center"
>
#}
{#
<input
type=
"checkbox"
name=
"checked"
value=
"{{ asset_tag.id }}"
>
#}
{#
</td>
#}
{#
<td
class=
"text-center"
>
#}
{#
<a
href=
"{% url 'assets:asset-tag-detail' pk=asset_tag.id %}"
>
#}
{# {{ asset_tag.name }}#}
{#
</a>
#}
{#
</td>
#}
{#
<td
class=
"text-center"
>
{{ asset_tag.asset_set.count }}
</td>
#}
{#
<td
class=
"text-center"
>
#}
{#
<a
href=
"{% url 'assets:asset-tag-update' pk=asset_tag.id %}"
class=
"btn btn-xs btn-info"
>
{% trans 'Update' %}
</a>
#}
{#
<a
onclick=
"objectDelete(this,'{{ asset_tag.name }}','{% url 'assets:asset-tag-delete' asset_tag.id %}')"
class=
"btn btn-xs btn-danger del"
>
{% trans 'Delete' %}
</a>
#}
{#
</td>
#}
{#
</tr>
#}
{# {% endfor %}#}
{#{% endblock %}#}
{#{% block content_bottom_left %}#}
{#
<form
id=
""
method=
"get"
action=
""
class=
" mail-search"
>
#}
{#
<div
class=
"input-group"
>
#}
{#
<select
class=
"form-control m-b"
style=
"width: auto"
>
#}
{#
<option>
{% trans 'Delete selected' %}
</option>
#}
{#
<option>
{% trans 'Update selected' %}
</option>
#}
{#
<option>
{% trans 'Deactive selected' %}
</option>
#}
{#
<option>
{% trans 'Export selected' %}
</option>
#}
{#
</select>
#}
{#
<div
class=
"input-group-btn pull-left"
style=
"padding-left: 5px;"
>
#}
{#
<button
id=
'search_btn'
type=
"submit"
style=
"height: 32px;"
class=
"btn btn-sm btn-primary"
>
#}
{# {% trans 'Submit' %}#}
{#
</button>
#}
{#
</div>
#}
{#
</div>
#}
{#
</form>
#}
{#{% endblock %}#}
{% block table_search %}{% endblock %}
{% block table_container %}
<div
class=
"uc pull-left m-l-5 m-r-5"
>
<a
href=
"{% url "
assets:asset-tag-create
"
%}"
class=
"btn btn-sm btn-primary"
>
{% trans "Create Tag" %}
</a>
</div>
<table
class=
"table table-striped table-bordered table-hover "
id=
"tag_list_table"
>
<thead>
<tr>
<th
class=
"text-center"
><input
type=
"checkbox"
class=
"ipt_check_all"
></th>
<th
class=
"text-center"
>
{% trans 'TagName' %}
</th>
<th
class=
"text-center"
>
{% trans 'Asset num' %}
</th>
<th
class=
"text-center"
>
{% trans 'Action' %}
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div
id=
"actions"
class=
"hide"
>
<div
class=
"input-group"
>
<select
class=
"form-control m-b"
style=
"width: auto"
id=
"slct_bulk_update"
>
<option
value=
"delete"
>
{% trans 'Delete selected' %}
</option>
<option
value=
"update"
>
{% trans 'Update selected' %}
</option>
</select>
<div
class=
"input-group-btn pull-left"
style=
"padding-left: 5px;"
>
<button
id=
'btn_bulk_update'
style=
"height: 32px;"
class=
"btn btn-sm btn-primary"
>
{% trans 'Submit' %}
</button>
</div>
</div>
</div>
{% endblock %}
{% block custom_foot_js %}
<script
src=
"{% static 'js/jquery.form.min.js' %}"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
()
{
var
options
=
{
ele
:
$
(
"#tag_list_table"
),
columnDefs
:[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
var
detail_btn
=
'<a href="{% url '
assets
:
asset
-
tag
-
detail
' pk=99991937 %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'99991937'
,
rowData
.
id
));
}},
{
targets
:
3
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
var
update_btn
=
'<a href="{% url '
assets
:
asset
-
tag
-
detail
' pk=99991937 %}" class="btn btn-xs btn-info">{% trans "Update" %}</a>'
.
replace
(
'99991937'
,
cellData
);
var
del_btn
=
'<a class="btn btn-xs btn-danger m-l-xs btn_tag_delete" data-uid="99991937">{% trans "Delete" %}</a>'
.
replace
(
'99991937'
,
cellData
);
$
(
td
).
html
(
update_btn
+
del_btn
)
}}
],
ajax_url
:
'{% url "api-assets:asset-tag-list" %}'
,
columns
:
[{
data
:
function
(){
return
""
}},
{
data
:
"name"
},
{
data
:
"assets_amount"
},{
data
:
"id"
}]
};
jumpserver
.
initDataTable
(
options
);
})
.
on
(
'click'
,
'.btn_tag_delete'
,
function
()
{
var
$this
=
$
(
this
);
var
$data_table
=
$
(
'#tag_list_table'
).
DataTable
();
var
name
=
$
(
this
).
closest
(
"tr"
).
find
(
":nth-child(2)"
).
children
(
'a'
).
html
();
var
uid
=
$this
.
data
(
'uid'
);
var
the_url
=
'{% url "api-assets:asset-tag-detail" pk=99991937 %}'
.
replace
(
'99991937'
,
uid
);
objectDelete
(
$this
,
name
,
the_url
);
$data_table
.
ajax
.
reload
();
})
</script>
{% endblock %}
apps/assets/templates/assets/asset_update.html
View file @
709552f1
...
...
@@ -46,7 +46,6 @@
<h3>
{% trans 'Other' %}
</h3>
{{ form.status|bootstrap_horizontal }}
{{ form.env|bootstrap_horizontal }}
{{ form.tags|bootstrap_horizontal }}
{{ form.comment|bootstrap_horizontal }}
{{ form.is_active|bootstrap_horizontal }}
...
...
apps/jumpserver/urls.py
View file @
709552f1
...
...
@@ -19,12 +19,13 @@ Including another URLconf
from
django.conf.urls
import
url
,
include
from
django.conf
import
settings
from
django.conf.urls.static
import
static
from
django.views.generic.base
import
TemplateView
from
.views
import
IndexView
urlpatterns
=
[
url
(
r'^captcha/'
,
include
(
'captcha.urls'
)),
url
(
r'^$'
,
TemplateView
.
as_view
(
template_name
=
'base.html'
),
name
=
'index'
),
url
(
r'^$'
,
IndexView
.
as_view
(
),
name
=
'index'
),
url
(
r'^users/'
,
include
(
'users.urls.views_urls'
,
namespace
=
'users'
)),
url
(
r'^assets/'
,
include
(
'assets.urls.views_urls'
,
namespace
=
'assets'
)),
url
(
r'^perms/'
,
include
(
'perms.urls.views_urls'
,
namespace
=
'perms'
)),
...
...
apps/jumpserver/views.py
View file @
709552f1
from
django.views.generic
import
TemplateView
from
django.utils
import
timezone
from
django.db.models
import
Count
from
users.utils
import
AdminUserRequiredMixin
from
users.models
import
User
from
assets.models
import
Asset
from
audits.models
import
ProxyLog
class
IndexView
(
AdminUserRequiredMixin
,
TemplateView
):
template_name
=
'index.html'
def
get_context_data
(
self
,
**
kwargs
):
seven_days_ago
=
timezone
.
now
()
-
timezone
.
timedelta
(
days
=
7
)
month_ago
=
timezone
.
now
()
-
timezone
.
timedelta
(
days
=
30
)
proxy_log_seven_days
=
ProxyLog
.
objects
.
filter
(
date_start__gt
=
seven_days_ago
,
is_failed
=
False
)
proxy_log_month
=
ProxyLog
.
objects
.
filter
(
date_start__gt
=
month_ago
,
is_failed
=
False
)
month_dates
=
proxy_log_month
.
dates
(
'date_start'
,
'day'
)
month_total_visit
=
[
ProxyLog
.
objects
.
filter
(
date_start__date
=
d
)
for
d
in
month_dates
]
month_str
=
[
d
.
strftime
(
'
%
m-
%
d'
)
for
d
in
month_dates
]
month_total_visit_count
=
[
p
.
count
()
for
p
in
month_total_visit
]
month_user
=
[
p
.
values
(
'user'
)
.
distinct
()
.
count
()
for
p
in
month_total_visit
]
month_asset
=
[
p
.
values
(
'asset'
)
.
distinct
()
.
count
()
for
p
in
month_total_visit
]
month_user_active
=
User
.
objects
.
filter
(
last_login__gt
=
month_ago
)
.
count
()
month_user_inactive
=
User
.
objects
.
filter
(
last_login__lt
=
month_ago
)
.
count
()
month_user_disabled
=
User
.
objects
.
filter
(
is_active
=
False
)
.
count
()
month_asset_active
=
proxy_log_month
.
values
(
'asset'
)
.
distinct
()
.
count
()
month_asset_inactive
=
Asset
.
objects
.
all
()
.
count
()
-
month_asset_active
month_asset_disabled
=
Asset
.
objects
.
filter
(
is_active
=
False
)
.
count
()
week_asset_hot_ten
=
list
(
proxy_log_seven_days
.
values
(
'asset'
)
.
annotate
(
total
=
Count
(
'asset'
))
.
order_by
(
'-total'
)[:
10
])
for
p
in
week_asset_hot_ten
:
last_login
=
ProxyLog
.
objects
.
filter
(
asset
=
p
[
'asset'
])
.
order_by
(
'date_start'
)
.
last
()
p
[
'last'
]
=
last_login
last_login_ten
=
ProxyLog
.
objects
.
all
()
.
order_by
(
'-date_start'
)[:
10
]
for
p
in
last_login_ten
:
try
:
p
.
avatar_url
=
User
.
objects
.
get
(
username
=
p
.
user
)
.
avatar_url
()
except
User
.
DoesNotExist
:
p
.
avatar_url
=
User
.
objects
.
first
()
.
avatar_url
()
week_user_hot_ten
=
list
(
proxy_log_seven_days
.
values
(
'user'
)
.
annotate
(
total
=
Count
(
'user'
))
.
order_by
(
'-total'
)[:
10
])
for
p
in
week_user_hot_ten
:
last_login
=
ProxyLog
.
objects
.
filter
(
user
=
p
[
'user'
])
.
order_by
(
'date_start'
)
.
last
()
p
[
'last'
]
=
last_login
context
=
{
'assets_count'
:
Asset
.
objects
.
count
(),
'users_count'
:
User
.
objects
.
filter
(
role__in
=
(
'Admin'
,
'User'
))
.
count
(),
'online_user_count'
:
ProxyLog
.
objects
.
filter
(
is_finished
=
False
)
.
values
(
'user'
)
.
distinct
()
.
count
(),
'online_asset_count'
:
ProxyLog
.
objects
.
filter
(
is_finished
=
False
)
.
values
(
'asset'
)
.
distinct
()
.
count
(),
'user_visit_count_weekly'
:
proxy_log_seven_days
.
values
(
'user'
)
.
distinct
()
.
count
(),
'asset_visit_count_weekly'
:
proxy_log_seven_days
.
count
(),
'user_visit_count_top_five'
:
proxy_log_seven_days
.
values
(
'user'
)
.
annotate
(
total
=
Count
(
'user'
))
.
order_by
(
'-total'
)[:
5
],
'month_str'
:
month_str
,
'month_total_visit_count'
:
month_total_visit_count
,
'month_user'
:
month_user
,
'mouth_asset'
:
month_asset
,
'month_user_active'
:
month_user_active
,
'month_user_inactive'
:
month_user_inactive
,
'month_user_disabled'
:
month_user_disabled
,
'month_asset_active'
:
month_asset_active
,
'month_asset_inactive'
:
month_asset_inactive
,
'month_asset_disabled'
:
month_asset_disabled
,
'week_asset_hot_ten'
:
week_asset_hot_ten
,
'last_login_ten'
:
last_login_ten
,
'week_user_hot_ten'
:
week_user_hot_ten
,
}
kwargs
.
update
(
context
)
return
super
(
IndexView
,
self
)
.
get_context_data
(
**
kwargs
)
apps/ops/templates/ops/task_detail.html
View file @
709552f1
...
...
@@ -73,7 +73,7 @@
{% else %}
<td>
<div
class=
"progress progress-striped active"
>
<div
style=
"width: 50%"
aria-valuemax=
"100"
aria-valuemin=
"0"
aria-valuenow=
"75"
role=
"progressbar"
class=
"progress-bar progress-bar-
danger
"
>
<div
style=
"width: 50%"
aria-valuemax=
"100"
aria-valuemin=
"0"
aria-valuenow=
"75"
role=
"progressbar"
class=
"progress-bar progress-bar-
primary
"
>
<span
class=
"sr-only"
>
40% Complete (success)
</span>
</div>
</div>
...
...
apps/perms/api.py
View file @
709552f1
...
...
@@ -197,7 +197,7 @@ class MyAssetGroupAssetsApi(ListAPIView):
permission_classes
=
(
IsValidUser
,)
def
get
(
self
,
request
,
*
args
,
**
kwargs
):
asset_groups
=
{}
asset_groups
=
dict
()
asset_groups
[
0
]
=
{
'id'
:
0
,
'name'
:
'ungrouped'
,
'assets'
:
[]
}
...
...
@@ -216,7 +216,7 @@ class MyAssetGroupAssetsApi(ListAPIView):
asset_json
=
asset
.
to_json
()
asset_json
[
'system_users'
]
=
[
su
.
to_json
()
for
su
in
system_users
]
if
not
asset
.
groups
.
all
():
asset_groups
[
0
][
assets
]
.
append
(
asset_json
)
asset_groups
[
0
][
'assets'
]
.
append
(
asset_json
)
continue
for
asset_group
in
asset
.
groups
.
all
():
if
asset_group
.
id
in
asset_groups
:
...
...
apps/templates/_base_list.html
View file @
709552f1
{% extends 'base.html' %}
{% load static %}
{% block custom_head_css_js %}
<link
href=
"{% static "
css
/
plugins
/
dataTables
/
data
T
ables
.
min
.
css
"
%}"
rel=
"stylesheet"
>
<link
href=
"{% static "
css
/
plugins
/
dataTables
/
data
t
ables
.
min
.
css
"
%}"
rel=
"stylesheet"
>
<link
href=
"{% static "
css
/
plugins
/
awesome-bootstrap-checkbox
/
awesome-bootstrap-checkbox
.
css
"
%}"
rel=
"stylesheet"
>
<link
href=
"{% static "
css
/
plugins
/
select2
/
select2
.
min
.
css
"
%}"
rel=
"stylesheet"
>
<script
src=
"{% static "
js
/
plugins
/
select2
/
select2
.
full
.
min
.
js
"
%}"
></script>
...
...
apps/templates/_nav.html
View file @
709552f1
{% load i18n %}
<li
id=
"index"
>
<a
href=
""
>
<a
href=
"
{% url 'index' %}
"
>
<i
class=
"fa fa-dashboard"
></i>
<span
class=
"nav-label"
>
{% trans 'Home' %}
</span><span
class=
"label label-info pull-right"
></span>
</a>
</li>
...
...
apps/templates/index.html
View file @
709552f1
This diff is collapsed.
Click to expand it.
apps/users/templates/users/user_group_detail.html
View file @
709552f1
...
...
@@ -5,7 +5,7 @@
{% block custom_head_css_js %}
<link
href=
"{% static "
css
/
plugins
/
select2
/
select2
.
min
.
css
"
%}"
rel=
"stylesheet"
>
<link
href=
"{% static "
css
/
plugins
/
sweetalert
/
sweetalert
.
css
"
%}"
rel=
"stylesheet"
>
<link
href=
"{% static "
css
/
plugins
/
dataTables
/
data
T
ables
.
min
.
css
"
%}"
rel=
"stylesheet"
>
<link
href=
"{% static "
css
/
plugins
/
dataTables
/
data
t
ables
.
min
.
css
"
%}"
rel=
"stylesheet"
>
<link
href=
"{% static "
css
/
plugins
/
awesome-bootstrap-checkbox
/
awesome-bootstrap-checkbox
.
css
"
%}"
rel=
"stylesheet"
>
<script
src=
"{% static "
js
/
plugins
/
select2
/
select2
.
full
.
min
.
js
"
%}"
></script>
<script
src=
"{% static "
js
/
plugins
/
sweetalert
/
sweetalert
.
min
.
js
"
%}"
></script>
...
...
requirements/requirements.txt
View file @
709552f1
...
...
@@ -7,7 +7,7 @@ ForgeryPy==0.1
openpyxl==2.4.0
celery==3.1.23
paramiko==2.1.1
ansible==2.
1
.2.0
ansible==2.
2
.2.0
django-simple-captcha==0.5.2
django-formtools==1.0
sshpubkeys==2.2.0
...
...
@@ -20,4 +20,3 @@ tornado==4.4.2
eventlet==0.20.1
django-filter==1.0.0
passlib==1.7.1
sshpass
utils/clean_migrations.sh
View file @
709552f1
...
...
@@ -2,5 +2,5 @@
#
for
app
in
users
assets perms audits ops applications
;
do
rm
-f
../apps/
$app
/migrations/00
0
*
rm
-f
../apps/
$app
/migrations/00
*
done
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