File tree 5 files changed +82
-13
lines changed
5 files changed +82
-13
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,13 @@ def get_form_kwargs(self):
34
34
kwargs .update ({"user" : self .request .user })
35
35
return kwargs
36
36
37
-
38
37
class PortalProfileUpdate (UpdateView ):
39
38
model = PortalProfile
40
- fields = "__all__ "
39
+ template_name = "portal_account/portalprofile_form.html "
41
40
success_url = reverse_lazy ("index" )
41
+ form_class = PortalProfileForm
42
+
43
+ def get_form_kwargs (self ):
44
+ kwargs = super (PortalProfileUpdate , self ).get_form_kwargs ()
45
+ kwargs .update ({"user" : self .request .user })
46
+ return kwargs
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ <h1 class="display-5">Account Management</h1>
13
13
< hr >
14
14
< h1 class ="display-5 "> Your Portal Profile</ h1 >
15
15
{% if profile_id %}
16
- < a class ="btn btn-primary btn-lg " role ="button " href ="{% url 'portal_account:portal_profile_detail' profile_id%} "> View my profile</ a >
16
+ < a class ="btn btn-primary btn-lg " role ="button " href ="{% url 'portal_account:portal_profile_detail' profile_id %} "> View my profile</ a >
17
+ < a class ="btn btn-secondary btn-lg " role ="button " href ="{% url 'portal_account:portal_profile_edit' profile_id %} "> Edit profile</ a >
17
18
{% else %}
18
19
< p class ="col-md-8 fs-4 ">
19
20
Your profile is not complete. Please complete your profile before proceeding.
Original file line number Diff line number Diff line change 5
5
{% block body %}
6
6
{% endblock %}
7
7
{% block content %}
8
- < h1 > Your Profile</ h1 >
9
- < div >
10
- {% bootstrap_label object.user.username %}
8
+ < h1 class ="display-5 mb-4 "> Your Portal Profile</ h1 >
9
+
10
+ < div class ="card mb-4 ">
11
+ < div class ="card-header ">
12
+ < h5 class ="card-title mb-0 "> Basic Information</ h5 >
13
+ </ div >
14
+ < div class ="card-body ">
15
+ < div class ="row mb-3 ">
16
+ < div class ="col-md-3 fw-bold "> Username:</ div >
17
+ < div class ="col-md-9 "> {{ object.user.username }}</ div >
18
+ </ div >
19
+ < div class ="row mb-3 ">
20
+ < div class ="col-md-3 fw-bold "> Name:</ div >
21
+ < div class ="col-md-9 "> {{ object.user.first_name }} {{ object.user.last_name }}</ div >
22
+ </ div >
23
+ < div class ="row mb-3 ">
24
+ < div class ="col-md-3 fw-bold "> Email:</ div >
25
+ < div class ="col-md-9 "> {{ object.user.email }}</ div >
26
+ </ div >
27
+ < div class ="row mb-3 ">
28
+ < div class ="col-md-3 fw-bold "> Pronouns:</ div >
29
+ < div class ="col-md-9 "> {{ object.pronouns|default:"Not specified" }}</ div >
30
+ </ div >
31
+ < div class ="row mb-3 ">
32
+ < div class ="col-md-3 fw-bold "> Code of Conduct Agreement:</ div >
33
+ < div class ="col-md-9 "> {% if object.coc_agreement %}Agreed{% else %}Not agreed{% endif %}</ div >
34
+ </ div >
35
+ </ div >
36
+ </ div >
37
+
38
+ < div class ="mt-4 ">
39
+ < a class ="btn btn-primary " href ="{% url 'portal_account:portal_profile_edit' object.pk %} "> Edit Profile</ a >
40
+ < a class ="btn btn-secondary " href ="{% url 'portal_account:index' %} "> Back to Account Management</ a >
11
41
</ div >
12
- {% bootstrap_label object.user.first_name %}
13
- {% bootstrap_label object.user.last_name %}
14
-
15
42
{% endblock %}
Original file line number Diff line number Diff line change
1
+ {% extends "portal/base.html" %}
2
+ {% load allauth i18n %}
3
+ {% load django_bootstrap5 %}
4
+
5
+ {% block body %}
6
+ {% endblock %}
7
+ {% block content %}
8
+ < main >
9
+ < h1 class ="display-5 "> Edit your Portal Profile</ h1 >
10
+ < p class ="lead ">
11
+ Update your portal profile information below.
12
+ </ p >
13
+ < div class ="row g-5 ">
14
+ {% bootstrap_form_errors form %}
15
+ < form action ="{% url 'portal_account:portal_profile_edit' object.pk %} " method ="post " class ="form "> {% csrf_token %}
16
+ {% bootstrap_field form.username %}
17
+ {% bootstrap_field form.first_name %}
18
+ {% bootstrap_field form.last_name %}
19
+ {% bootstrap_field form.email %}
20
+ {% bootstrap_field form.pronouns %}
21
+ {% bootstrap_field form.coc_agreement %}
22
+ < div class ="mt-4 ">
23
+ < input type ="submit " value ="Update Profile " class ="btn btn-primary " />
24
+ < a href ="{% url 'portal_account:portal_profile_detail' object.pk %} " class ="btn btn-secondary "> Cancel</ a >
25
+ </ div >
26
+ </ form >
27
+ </ div >
28
+ </ main >
29
+ {% endblock %}
Original file line number Diff line number Diff line change 6
6
{% endblock %}
7
7
{% block content %}
8
8
< main >
9
- < h1 class ="display-5 "> Create your Portal Profile</ h1 >
9
+ < h1 class ="display-5 "> {% if object.pk %}Edit{% else %} Create{% endif %} your Portal Profile</ h1 >
10
10
< p class ="lead ">
11
- Please complete your portal profile before proceeding.
11
+ {% if object.pk %}Update your portal profile information below.{% else %} Please complete your portal profile before proceeding.{% endif %}
12
12
</ p >
13
13
< div class ="row g-5 ">
14
14
{% bootstrap_form_errors form %}
15
- < form action ="{% url 'portal_account:portal_profile_new' %} " method ="post " class ="form "> {% csrf_token %}
15
+ < form action ="{% if object.pk %}{% url 'portal_account:portal_profile_edit' object.pk %}{% else %}{% url 'portal_account: portal_profile_new' %}{% endif %} " method ="post " class ="form "> {% csrf_token %}
16
16
{% bootstrap_field form.username %}
17
17
{% bootstrap_field form.first_name %}
18
18
{% bootstrap_field form.last_name %}
19
19
{% bootstrap_field form.email %}
20
20
{% bootstrap_field form.pronouns %}
21
21
{% bootstrap_field form.coc_agreement %}
22
- < input type ="submit " value ="Submit " />
22
+ < div class ="mt-4 ">
23
+ < input type ="submit " value ="{% if object.pk %}Update Profile{% else %}Create Profile{% endif %} " class ="btn btn-primary " />
24
+ {% if object.pk %}
25
+ < a href ="{% url 'portal_account:portal_profile_detail' object.pk %} " class ="btn btn-secondary "> Cancel</ a >
26
+ {% else %}
27
+ < a href ="{% url 'portal_account:index' %} " class ="btn btn-secondary "> Cancel</ a >
28
+ {% endif %}
29
+ </ div >
23
30
</ form >
24
31
{# < form class ="needs-validation " novalidate =""> #}
25
32
{# < div class ="row g-3 "> #}
You can’t perform that action at this time.
0 commit comments