Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
NoteKfet 2020
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
19
Issues
19
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BDE
NoteKfet 2020
Commits
66b70e69
Commit
66b70e69
authored
Aug 14, 2019
by
pa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add transaction history list on the user
parent
a456468a
Pipeline
#1443
passed with stage
in 3 minutes and 29 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
apps/member/views.py
apps/member/views.py
+10
-1
templates/member/profile_detail.html
templates/member/profile_detail.html
+3
-1
No files found.
apps/member/views.py
View file @
66b70e69
...
...
@@ -9,9 +9,11 @@ from django.views.generic import CreateView, ListView, DetailView
from
django.http
import
HttpResponseRedirect
from
django.contrib.auth.forms
import
UserCreationForm
from
django.urls
import
reverse_lazy
from
django.db.models
import
Q
from
.models
import
Profile
,
Club
from
.forms
import
ProfileForm
,
ClubForm
from
note.models.transactions
import
Transaction
class
UserCreateView
(
CreateView
):
"""
...
...
@@ -39,9 +41,16 @@ class UserCreateView(CreateView):
return
super
().
form_valid
(
form
)
class
UserDetailView
(
LoginRequiredMixin
,
DetailView
):
model
=
Profile
def
get_context_data
(
slef
,
**
kwargs
):
context
=
super
().
get_context_data
(
**
kwargs
)
user
=
context
[
'object'
].
user
.
note
user_transactions
=
\
Transaction
.
objects
.
all
().
filter
(
Q
(
source
=
user
)
|
Q
(
destination
=
user
))
context
[
'history_list'
]
=
user_transactions
return
context
class
ClubCreateView
(
LoginRequiredMixin
,
CreateView
):
...
...
templates/member/profile_detail.html
View file @
66b70e69
{% extends "base.html" %}
{% load i18n static pretty_money %}
{% load i18n static pretty_money
django_tables2
%}
{% block content %}
<h3>
Compte n° {{ object.pk }}
</h3>
...
...
@@ -24,4 +24,6 @@
</dl>
<a
href=
"{% url "
password_change
"
%}"
>
{% trans 'Change password' %}
</a>
{% render_table history_list %}
{% endblock %}
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