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
ad7b9ac7
authored
Mar 10, 2014
by
Oláh István Gergely
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: move textbox to userlist
parent
94002b21
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
circle/dashboard/templates/dashboard/group-detail.html
+1
-1
circle/dashboard/views.py
+11
-4
No files found.
circle/dashboard/templates/dashboard/group-detail.html
View file @
ad7b9ac7
...
...
@@ -48,6 +48,7 @@
</tr>
</tbody>
</table>
<textarea
name=
"list-new-list"
class=
"form-control"
></textarea>
<div
class=
"form-actions"
>
<button
type=
"submit"
class=
"btn btn-success"
>
{% trans "Save" %}
</button>
</div>
...
...
@@ -88,7 +89,6 @@
</tr>
</tbody>
</table>
<textarea
name=
"perm-new-list"
class=
"form-control"
></textarea>
<div
class=
"form-actions"
>
<button
type=
"submit"
class=
"btn btn-success"
>
{% trans "Save" %}
</button>
...
...
circle/dashboard/views.py
View file @
ad7b9ac7
...
...
@@ -595,8 +595,10 @@ class GroupDetailView(CheckedDetailView):
def
post
(
self
,
request
,
*
args
,
**
kwargs
):
if
request
.
POST
.
get
(
'new_name'
):
return
self
.
__set_name
(
request
)
if
request
.
POST
.
get
(
'list-new-name'
):
if
request
.
POST
.
get
(
'list-new-name'
)
is
not
None
:
return
self
.
__add_user
(
request
)
elif
request
.
POST
.
get
(
'list-new-list'
)
is
not
None
:
return
self
.
__add_list
(
request
)
def
__add_user
(
self
,
request
):
name
=
request
.
POST
[
'list-new-name'
]
...
...
@@ -604,14 +606,19 @@ class GroupDetailView(CheckedDetailView):
def
__add_username
(
self
,
request
,
name
):
self
.
object
=
self
.
get_object
()
if
not
name
:
return
return
redirect
(
reverse_lazy
(
"dashboard.views.group-detail"
,
kwargs
=
{
'pk'
:
self
.
object
.
pk
}))
try
:
entity
=
User
.
objects
.
get
(
username
=
name
)
self
.
object
.
user_set
.
add
(
entity
)
except
User
.
DoesNotExist
:
warning
(
request
,
_
(
'User "
%
s" not found.'
)
%
name
)
return
self
.
object
.
user_set
.
add
(
entity
)
return
redirect
(
reverse_lazy
(
"dashboard.views.group-detail"
,
kwargs
=
{
'pk'
:
self
.
object
.
pk
}))
def
__add_list
(
self
,
request
,
name
):
return
redirect
(
reverse_lazy
(
"dashboard.views.group-detail"
,
kwargs
=
{
'pk'
:
self
.
object
.
pk
}))
...
...
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