Skip to content

Commit

Permalink
User's first and last name also gets displayed in manage user roles p…
Browse files Browse the repository at this point in the history
…age.
  • Loading branch information
Lalit1471 committed Feb 4, 2022
1 parent 2fda206 commit 69b1c5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user/templates/user/user_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h3 class="name">Coordinators</h3>
<div class="list-group-item list-group-item-action">
<div class="row">
<div class="col-md-6">
<a href="{% url 'user:profile_page' user%}"><b class="issuer"> {{ user }} &nbsp;| {{ user.profile.regnum }}&nbsp;</b> </a>
<a href="{% url 'user:profile_page' user%}"><b class="issuer"> {{ user }} &nbsp;| {{ user.profile.first_name }} {{ user.profile.last_name }} &nbsp;| {{ user.profile.regnum }}&nbsp;</b> </a>
</div>

<div class="col-md-6">
Expand Down Expand Up @@ -83,7 +83,7 @@ <h3 class="name">Members</h3>
<div class="list-group-item list-group-item-action">
<div class="row">
<div class="col-md-6">
<a href="{% url 'user:profile_page' user%}"><b class="issuer"> {{ user }} &nbsp;| {{ user.profile.regnum }}&nbsp;</b> </a>
<a href="{% url 'user:profile_page' user%}"><b class="issuer"> {{ user }} &nbsp;| {{ user.profile.first_name }} {{ user.profile.last_name }} &nbsp;| {{ user.profile.regnum }}&nbsp;</b> </a>
</div>

<div class="col-md-6">
Expand Down

0 comments on commit 69b1c5c

Please sign in to comment.