Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3d81d408
authored
Oct 25, 2014
by
Bach Dániel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-group-detail' into 'master'
Fix group detail Closes
#323
See merge request
!253
parents
7c604358
ae2e57a2
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
65 additions
and
76 deletions
+65
-76
circle/dashboard/static/dashboard/dashboard.css
+10
-1
circle/dashboard/static/dashboard/group-details.js
+1
-1
circle/dashboard/static/dashboard/group-list.js
+1
-0
circle/dashboard/static/dashboard/node-details.js
+1
-1
circle/dashboard/static/dashboard/node-list.js
+0
-34
circle/dashboard/tables.py
+3
-0
circle/dashboard/templates/dashboard/group-detail.html
+48
-38
circle/dashboard/templates/dashboard/group-list.html
+1
-1
No files found.
circle/dashboard/static/dashboard/dashboard.css
View file @
3d81d408
...
@@ -216,7 +216,7 @@ html {
...
@@ -216,7 +216,7 @@ html {
}
}
#vm-list-rename-name
,
#node-list-rename-name
,
#group-list-rename-name
{
#vm-list-rename-name
,
#node-list-rename-name
,
#group-list-rename-name
{
max-width
:
1
0
0px
;
max-width
:
1
5
0px
;
}
}
.label-tag
{
.label-tag
{
...
@@ -1042,3 +1042,12 @@ textarea[name="new_members"] {
...
@@ -1042,3 +1042,12 @@ textarea[name="new_members"] {
#vm-migrate-node-list
li
{
#vm-migrate-node-list
li
{
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.group-list-table
.actions
,
.group-list-table
.admin
,
.group-list-table
.number_of_users
,
.group-list-table
.pk
{
width
:
1px
;
white-space
:
nowrap
;
text-align
:
center
;
}
circle/dashboard/static/dashboard/group-details.js
View file @
3d81d408
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
data
:
{
'new_name'
:
name
},
data
:
{
'new_name'
:
name
},
headers
:
{
"X-CSRFToken"
:
getCookie
(
'csrftoken'
)},
headers
:
{
"X-CSRFToken"
:
getCookie
(
'csrftoken'
)},
success
:
function
(
data
,
textStatus
,
xhr
)
{
success
:
function
(
data
,
textStatus
,
xhr
)
{
$
(
"#group-details-h1-name"
).
html
(
data
[
'new_name'
]).
show
();
$
(
"#group-details-h1-name"
).
text
(
data
[
'new_name'
]).
show
();
$
(
'#group-details-rename'
).
hide
();
$
(
'#group-details-rename'
).
hide
();
// addMessage(data['message'], "success");
// addMessage(data['message'], "success");
},
},
...
...
circle/dashboard/static/dashboard/group-list.js
View file @
3d81d408
...
@@ -3,6 +3,7 @@ $(function() {
...
@@ -3,6 +3,7 @@ $(function() {
$
(
"#group-list-rename-button, .group-details-rename-button"
).
click
(
function
()
{
$
(
"#group-list-rename-button, .group-details-rename-button"
).
click
(
function
()
{
$
(
"#group-list-column-name"
,
$
(
this
).
closest
(
"tr"
)).
hide
();
$
(
"#group-list-column-name"
,
$
(
this
).
closest
(
"tr"
)).
hide
();
$
(
"#group-list-rename"
,
$
(
this
).
closest
(
"tr"
)).
css
(
'display'
,
'inline'
);
$
(
"#group-list-rename"
,
$
(
this
).
closest
(
"tr"
)).
css
(
'display'
,
'inline'
);
$
(
"#group-list-rename"
).
find
(
"input"
).
select
();
});
});
/* rename ajax */
/* rename ajax */
...
...
circle/dashboard/static/dashboard/node-details.js
View file @
3d81d408
...
@@ -15,7 +15,7 @@ $(function() {
...
@@ -15,7 +15,7 @@ $(function() {
data
:
{
'new_name'
:
name
},
data
:
{
'new_name'
:
name
},
headers
:
{
"X-CSRFToken"
:
getCookie
(
'csrftoken'
)},
headers
:
{
"X-CSRFToken"
:
getCookie
(
'csrftoken'
)},
success
:
function
(
data
,
textStatus
,
xhr
)
{
success
:
function
(
data
,
textStatus
,
xhr
)
{
$
(
"#node-details-h1-name"
).
html
(
data
[
'new_name'
]).
show
();
$
(
"#node-details-h1-name"
).
text
(
data
[
'new_name'
]).
show
();
$
(
'#node-details-rename'
).
hide
();
$
(
'#node-details-rename'
).
hide
();
// addMessage(data['message'], "success");
// addMessage(data['message'], "success");
},
},
...
...
circle/dashboard/static/dashboard/node-list.js
View file @
3d81d408
...
@@ -12,40 +12,6 @@ $(function() {
...
@@ -12,40 +12,6 @@ $(function() {
tr
.
removeClass
(
'danger'
);
tr
.
removeClass
(
'danger'
);
}
}
/* rename */
$
(
"#node-list-rename-button, .node-details-rename-button"
).
click
(
function
()
{
$
(
"#node-list-column-name"
,
$
(
this
).
closest
(
"tr"
)).
hide
();
$
(
"#node-list-rename"
,
$
(
this
).
closest
(
"tr"
)).
css
(
'display'
,
'inline'
);
});
/* rename ajax */
$
(
'.node-list-rename-submit'
).
click
(
function
()
{
var
row
=
$
(
this
).
closest
(
"tr"
)
var
name
=
$
(
'#node-list-rename-name'
,
row
).
val
();
var
url
=
'/dashboard/node/'
+
row
.
children
(
"td:first-child"
).
text
().
replace
(
" "
,
""
)
+
'/'
;
$
.
ajax
({
method
:
'POST'
,
url
:
url
,
data
:
{
'new_name'
:
name
},
headers
:
{
"X-CSRFToken"
:
getCookie
(
'csrftoken'
)},
success
:
function
(
data
,
textStatus
,
xhr
)
{
$
(
"#node-list-column-name"
,
row
).
html
(
$
(
"<a/>"
,
{
'class'
:
"real-link"
,
href
:
"/dashboard/node/"
+
data
[
'node_pk'
]
+
"/"
,
text
:
data
[
'new_name'
]
})
).
show
();
$
(
'#node-list-rename'
,
row
).
hide
();
// addMessage(data['message'], "success");
},
error
:
function
(
xhr
,
textStatus
,
error
)
{
addMessage
(
"Error during renaming!"
,
"danger"
);
}
});
return
false
;
});
function
statuschangeSuccess
(
tr
){
function
statuschangeSuccess
(
tr
){
var
tspan
=
tr
.
children
(
'.enabled'
).
children
();
var
tspan
=
tr
.
children
(
'.enabled'
).
children
();
...
...
circle/dashboard/tables.py
View file @
3d81d408
...
@@ -88,18 +88,21 @@ class GroupListTable(Table):
...
@@ -88,18 +88,21 @@ class GroupListTable(Table):
number_of_users
=
TemplateColumn
(
number_of_users
=
TemplateColumn
(
orderable
=
False
,
orderable
=
False
,
verbose_name
=
_
(
"Number of users"
),
template_name
=
'dashboard/group-list/column-users.html'
,
template_name
=
'dashboard/group-list/column-users.html'
,
attrs
=
{
'th'
:
{
'class'
:
'group-list-table-admin'
}},
attrs
=
{
'th'
:
{
'class'
:
'group-list-table-admin'
}},
)
)
admin
=
TemplateColumn
(
admin
=
TemplateColumn
(
orderable
=
False
,
orderable
=
False
,
verbose_name
=
_
(
"Admin"
),
template_name
=
'dashboard/group-list/column-admin.html'
,
template_name
=
'dashboard/group-list/column-admin.html'
,
attrs
=
{
'th'
:
{
'class'
:
'group-list-table-admin'
}},
attrs
=
{
'th'
:
{
'class'
:
'group-list-table-admin'
}},
)
)
actions
=
TemplateColumn
(
actions
=
TemplateColumn
(
orderable
=
False
,
orderable
=
False
,
verbose_name
=
_
(
"Actions"
),
attrs
=
{
'th'
:
{
'class'
:
'group-list-table-thin'
}},
attrs
=
{
'th'
:
{
'class'
:
'group-list-table-thin'
}},
template_code
=
(
'{
%
include "dashboard/group-list/column-'
template_code
=
(
'{
%
include "dashboard/group-list/column-'
'actions.html" with btn_size="btn-xs"
%
}'
),
'actions.html" with btn_size="btn-xs"
%
}'
),
...
...
circle/dashboard/templates/dashboard/group-detail.html
View file @
3d81d408
{% extends "dashboard/base.html" %}
{% extends "dashboard/base.html" %}
{% load crispy_forms_tags %}
{% load crispy_forms_tags %}
{% load i18n %}
{% load i18n %}
{% load static %}
{% block title-page %}{{ group.name }} | {% trans "group" %}{% endblock %}
{% block title-page %}{{ group.name }} | {% trans "group" %}{% endblock %}
...
@@ -8,9 +9,15 @@
...
@@ -8,9 +9,15 @@
<div
class=
"body-content"
>
<div
class=
"body-content"
>
<div
class=
"page-header"
>
<div
class=
"page-header"
>
<div
class=
"pull-right"
style=
"padding-top: 15px;"
>
<div
class=
"pull-right"
style=
"padding-top: 15px;"
>
<a
title=
"{% trans "
Rename
"
%}"
href=
"#"
class=
"btn btn-default btn-xs group-details-rename-button"
><i
class=
"fa fa-pencil"
></i></a>
<a
title=
"{% trans "
Rename
"
%}"
href=
"#"
class=
"btn btn-default btn-xs group-details-rename-button"
>
<a
title=
"{% trans "
Delete
"
%}"
data-group-pk=
"{{ group.pk }}"
class=
"btn btn-default btn-xs real-link group-delete"
href=
"{% url "
dashboard
.
views
.
delete-group
"
pk=
group.pk
%}"
><i
class=
"fa fa-trash-o"
></i></a>
<i
class=
"fa fa-pencil"
></i>
<a
title=
"{% trans "
Help
"
%}"
href=
"#"
class=
"btn btn-default btn-xs group-details-help-button"
><i
class=
"fa fa-question"
></i></a>
</a>
<a
title=
"{% trans "
Delete
"
%}"
data-group-pk=
"{{ group.pk }}"
class=
"btn btn-default btn-xs real-link group-delete"
href=
"{% url "
dashboard
.
views
.
delete-group
"
pk=
group.pk
%}"
>
<i
class=
"fa fa-trash-o"
></i>
</a>
<a
title=
"{% trans "
Help
"
%}"
href=
"#"
class=
"btn btn-default btn-xs group-details-help-button"
>
<i
class=
"fa fa-question"
></i>
</a>
</div>
</div>
<h1>
<h1>
<div
id=
"group-details-rename"
>
<div
id=
"group-details-rename"
>
...
@@ -39,21 +46,18 @@
...
@@ -39,21 +46,18 @@
</li>
</li>
</ul>
</ul>
</div>
</div>
</div
>
</div>
<!-- .page-header --
>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-md-12"
id=
"group-detail-pane"
>
<div
class=
"col-md-12"
id=
"group-detail-pane"
>
<div
class=
"panel panel-default"
id=
"group-detail-panel"
>
<div
class=
"panel panel-default panel-body"
id=
"group-detail-panel"
>
<div
class=
"tab-content panel-body"
id=
"group-form-body"
>
<form
method=
"POST"
action=
"{% url "
dashboard
.
views
.
group-update
"
pk=
group.pk
%}"
>
<form
method=
"POST"
action=
"{% url "
dashboard
.
views
.
group-update
"
pk=
group.pk
%}"
>
{% csrf_token %}
{% csrf_token %}
{% crispy group_profile_form %}
{% crispy group_profile_form %}
</form>
</form>
<hr
/>
<hr
/>
<h3>
{% trans "Available objects for this group" %}
</h3>
<h3>
{% trans "Available objects for this group" %}
</h3>
<ul
class=
"dashboard-profile-vm-list fa-ul"
>
<ul
class=
"dashboard-profile-vm-list fa-ul"
>
{% for i in vm_objects %}
{% for i in vm_objects %}
<li>
<li>
<a
href=
"{{ i.get_absolute_url }}"
>
<a
href=
"{{ i.get_absolute_url }}"
>
...
@@ -78,17 +82,19 @@
...
@@ -78,17 +82,19 @@
</a>
</a>
</li>
</li>
{% endfor %}
{% endfor %}
</ul>
</ul>
<hr
/>
<hr
/>
<h3>
{% trans "User list"|capfirst %}
<h3>
{% trans "User list" %}
{% if perms.auth.add_user %}
{% if perms.auth.add_user %}
<a
href=
"{% url "
dashboard
.
views
.
create-user
"
group
.
pk
%}"
class=
"btn btn-success pull-right"
>
{% trans "Create user" %}
</a>
<a
href=
"{% url "
dashboard
.
views
.
create-user
"
group
.
pk
%}"
class=
"btn btn-success pull-right"
>
{% trans "Create user" %}
</a>
{% endif %}
{% endif %}
</h3>
</h3>
<form
action=
""
method=
"post"
>
{% csrf_token %}
<form
action=
""
method=
"post"
>
{% csrf_token %}
<table
class=
"table table-striped table-with-form-fields table-bordered"
id=
"group-detail-user-table"
>
<table
class=
"table table-striped table-with-form-fields table-bordered"
id=
"group-detail-user-table"
>
<tbody>
<tbody>
<thead><tr><th></th><th>
{% trans "Who" %}
</th><th>
{% trans "Remove" %}
</th></tr></thead>
<thead><tr><th></th><th>
{% trans "Who" %}
</th><th>
{% trans "Remove" %}
</th></tr></thead>
{% for i in users %}
{% for i in users %}
...
@@ -101,7 +107,9 @@
...
@@ -101,7 +107,9 @@
>
{% include "dashboard/_display-name.html" with user=i show_org=True %}
</a>
>
{% include "dashboard/_display-name.html" with user=i show_org=True %}
</a>
</td>
</td>
<td>
<td>
<a
data-group_pk=
"{{ group.pk }}"
data-member_pk=
"{{i.pk}}"
href=
"{% url "
dashboard
.
views
.
remove-user
"
member_pk=
i.pk
group_pk=
group.pk
%}"
class=
"real-link delete-from-group btn btn-link btn-xs"
><i
class=
"fa fa-times"
><span
class=
"sr-only"
>
{% trans "remove" %}
</span></i></a>
<a
data-group_pk=
"{{ group.pk }}"
data-member_pk=
"{{i.pk}}"
href=
"{% url "
dashboard
.
views
.
remove-user
"
member_pk=
i.pk
group_pk=
group.pk
%}"
class=
"real-link delete-from-group btn btn-link btn-xs"
><i
class=
"fa fa-times"
>
<span
class=
"sr-only"
>
{% trans "remove" %}
</span></i>
</a>
</td>
</td>
</tr>
</tr>
{% endfor %}
{% endfor %}
...
@@ -132,29 +140,31 @@
...
@@ -132,29 +140,31 @@
<button
type=
"submit"
class=
"btn btn-success"
>
{% trans "Save" %}
</button>
<button
type=
"submit"
class=
"btn btn-success"
>
{% trans "Save" %}
</button>
</div>
</div>
</form>
</form>
<hr
/>
<h3
id=
"group-detail-perm-header"
>
{% trans "Access permissions"|capfirst %}
</h3>
{% include "dashboard/_manage_access.html" with table_id="group-detail-perm-table" %}
{% if user.is_superuser %}
<hr
/>
<hr
/>
<h3
id=
"group-detail-perm-header"
>
{% trans "Access permissions" %}
</h3>
{% include "dashboard/_manage_access.html" with table_id="group-detail-perm-table" %}
<script
type=
"text/javascript"
src=
"/static/admin/js/jquery.min.js"
></script>
{% if user.is_superuser %}
<script
type=
"text/javascript"
src=
"/static/admin/js/jquery.init.js"
></script>
<hr
/>
{{ group_perm_form.media }}
<h3>
{% trans "Group permissions" %}
</h3>
<script
type=
"text/javascript"
src=
"/static/admin/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"/static/admin/js/jquery.init.js"
></script>
{{ group_perm_form.media }}
<div
id=
"group-detail-permissions"
>
<h3>
{% trans "Group permissions" %}
</h3>
{% crispy group_perm_form %}
</div>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/static/admin/css/widgets.css"
/>
<div
id=
"group-detail-permissions"
>
{% crispy group_perm_form %}
{% endif %}
</div>
</div>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/static/admin/css/widgets.css"
/>
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% endblock %}
{% block extra_js %}
<script
type=
"text/javascript"
src=
"{% static "
dashboard
/
group-details
.
js
"
%}"
></script>
{% endblock %}
circle/dashboard/templates/dashboard/group-list.html
View file @
3d81d408
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
<div
class=
"col-md-12"
>
<div
class=
"col-md-12"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel-heading"
>
<div
class=
"panel-heading"
>
<h3
class=
"no-margin"
><i
class=
"fa fa-group"
></i>
Your groups
</h3>
<h3
class=
"no-margin"
><i
class=
"fa fa-group"
></i>
{% trans "Groups" %}
</h3>
</div>
</div>
<div
class=
"panel-body"
>
<div
class=
"panel-body"
>
<div
id=
"table_container"
>
<div
id=
"table_container"
>
...
...
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