Skip to content

Commit

Permalink
Merge branch 'Development'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jotest-account committed Jan 4, 2020
2 parents 9a7d662 + 27e647c commit 2044d0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<div class="dropdown-menu dropdown-menu-right " aria-labelledby="userMenu">
<a class="dropdown-item" href="{% url 'account_change_password' %}">Change password</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="{% url 'user_profile_edit' request.user.id %}">Edit profile</a>
<a class="dropdown-item" href="{% url 'user_profile_edit' request.user.profile.id %}">Edit profile</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="{% url 'account_logout' %}">Log out</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/forums/forum_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h3>{{ forum.title }}</h3>
<i>{{ forum.description }}</i>
</div>
<p class="p-3 font-weight-lighter"><small>number of
threads: {{ forum.thread_set.all.count }}</small></p>
threads: {{ forum.threads.all.count }}</small></p>

</a>

Expand Down

0 comments on commit 2044d0e

Please sign in to comment.