Skip to content

Commit 33aadf5

Browse files
feat: Allow editing the portal profile (#65)
1 parent e94b9c5 commit 33aadf5

File tree

5 files changed

+82
-13
lines changed

5 files changed

+82
-13
lines changed

portal_account/views.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,13 @@ def get_form_kwargs(self):
3434
kwargs.update({"user": self.request.user})
3535
return kwargs
3636

37-
3837
class PortalProfileUpdate(UpdateView):
3938
model = PortalProfile
40-
fields = "__all__"
39+
template_name = "portal_account/portalprofile_form.html"
4140
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

templates/portal_account/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ <h1 class="display-5">Account Management</h1>
1313
<hr>
1414
<h1 class="display-5">Your Portal Profile</h1>
1515
{% 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>
1718
{% else %}
1819
<p class="col-md-8 fs-4">
1920
Your profile is not complete. Please complete your profile before proceeding.

templates/portal_account/portalprofile_detail.html

+33-6
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,38 @@
55
{% block body %}
66
{% endblock %}
77
{% 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>
1141
</div>
12-
{% bootstrap_label object.user.first_name %}
13-
{% bootstrap_label object.user.last_name %}
14-
1542
{% endblock %}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 %}

templates/portal_account/portalprofile_form.html

+11-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,27 @@
66
{% endblock %}
77
{% block content %}
88
<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>
1010
<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 %}
1212
</p>
1313
<div class="row g-5">
1414
{% 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 %}
1616
{% bootstrap_field form.username %}
1717
{% bootstrap_field form.first_name %}
1818
{% bootstrap_field form.last_name %}
1919
{% bootstrap_field form.email %}
2020
{% bootstrap_field form.pronouns %}
2121
{% 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>
2330
</form>
2431
{# <form class="needs-validation" novalidate="">#}
2532
{# <div class="row g-3">#}

0 commit comments

Comments
 (0)