Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nk20
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BDE
nk20
Commits
c5f40e09
Commit
c5f40e09
authored
4 years ago
by
ynerant
Browse files
Options
Downloads
Patches
Plain Diff
🐛
Fix entry page view
parent
4cb162de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!104
Beta
Pipeline
#8516
failed with stages
in 4 minutes and 16 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/activity/templates/activity/activity_entry.html
+2
-10
2 additions, 10 deletions
apps/activity/templates/activity/activity_entry.html
apps/activity/views.py
+7
-6
7 additions, 6 deletions
apps/activity/views.py
with
9 additions
and
16 deletions
apps/activity/templates/activity/activity_entry.html
+
2
−
10
View file @
c5f40e09
...
...
@@ -130,19 +130,11 @@ SPDX-License-Identifier: GPL-3.0-or-later
$
.
post
(
"
/api/note/transaction/transaction/
"
,
{
"
csrfmiddlewaretoken
"
:
CSRF_TOKEN
,
"
quantity
"
:
1
,
"
amount
"
:
{
{
activity
.
activity_type
.
guest_entry_fee
}
},
"
amount
"
:
{{
activity
.
activity_type
.
guest_entry_fee
}},
"
reason
"
:
"
Crédit
"
+
credit_name
+
"
(invitation {{ activity.name }})
"
,
"
valid
"
:
true
,
"
polymorphic_ctype
"
:
{
{
notespecial_ctype
}
},
"
polymorphic_ctype
"
:
{{
notespecial_ctype
}},
"
resourcetype
"
:
"
SpecialTransaction
"
,
"
source
"
:
credit_id
,
"
destination
"
:
target
.
attr
(
'
data-inviter
'
),
...
...
This diff is collapsed.
Click to expand it.
apps/activity/views.py
+
7
−
6
View file @
c5f40e09
...
...
@@ -139,6 +139,7 @@ class ActivityInviteView(ProtectQuerysetMixin, ProtectedCreateView):
form
=
super
().
get_form
(
form_class
)
form
.
activity
=
Activity
.
objects
.
filter
(
PermissionBackend
.
filter_queryset
(
self
.
request
.
user
,
Activity
,
"
view
"
))
\
.
get
(
pk
=
self
.
kwargs
[
"
pk
"
])
form
.
fields
[
"
inviter
"
].
initial
=
self
.
request
.
user
.
note
return
form
def
form_valid
(
self
,
form
):
...
...
@@ -196,7 +197,6 @@ class ActivityEntryView(LoginRequiredMixin, TemplateView):
|
Q
(
inviter__alias__normalized_name__regex
=
Alias
.
normalize
(
pattern
))
)
else
:
pattern
=
None
guest_qs
=
guest_qs
.
none
()
return
guest_qs
...
...
@@ -224,7 +224,8 @@ class ActivityEntryView(LoginRequiredMixin, TemplateView):
# Filter with permission backend
note_qs
=
note_qs
.
filter
(
PermissionBackend
.
filter_queryset
(
self
.
request
.
user
,
Alias
,
"
view
"
))
if
pattern
:
if
"
search
"
in
self
.
request
.
GET
and
self
.
request
.
GET
[
"
search
"
]:
pattern
=
self
.
request
.
GET
[
"
search
"
]
note_qs
=
note_qs
.
filter
(
Q
(
note__noteuser__user__first_name__regex
=
pattern
)
|
Q
(
note__noteuser__user__last_name__regex
=
pattern
)
...
...
@@ -234,7 +235,7 @@ class ActivityEntryView(LoginRequiredMixin, TemplateView):
else
:
note_qs
=
note_qs
.
none
()
if
settings
.
DATABASES
[
note_qs
.
db
][
"
ENGINE
"
]
==
'
django.db.backends.postgresql
_psycopg2
'
:
if
settings
.
DATABASES
[
note_qs
.
db
][
"
ENGINE
"
]
==
'
django.db.backends.postgresql
'
:
note_qs
=
note_qs
.
distinct
(
'
note__pk
'
)[:
20
]
else
:
# SQLite doesn't support distinct fields. For compatibility reason (in dev mode), the note list will only
...
...
@@ -253,13 +254,13 @@ class ActivityEntryView(LoginRequiredMixin, TemplateView):
.
distinct
().
get
(
pk
=
self
.
kwargs
[
"
pk
"
])
context
[
"
activity
"
]
=
activity
matched
=
[]
matched
=
[]
for
guest
in
get_invited_guest
(
self
,
activity
):
for
guest
in
self
.
get_invited_guest
(
activity
):
guest
.
type
=
"
Invité
"
matched
.
append
(
guest
)
for
note
in
get_invited_note
(
self
,
activity
):
for
note
in
self
.
get_invited_note
(
activity
):
note
.
type
=
"
Adhérent
"
note
.
activity
=
activity
matched
.
append
(
note
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment