Browse Source

Merge branch 'add-thumbnail-to-user-model' into 'dev'

Fix small issue with image displayed

See merge request re2o/re2o!534
fix_routers
klafyvel 6 years ago
parent
commit
804101a9da
  1. 2
      templates/base.html

2
templates/base.html

@ -217,7 +217,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="panel-heading">
<h4>{{ request_user.name }} {{ request_user.surname }}</h4>
{% if request_user.image_url %}
<img src="{{ users.image_url }}" height="42" width="42" />
<img src="{{ request_user.image_url }}" height="42" width="42" />
{% endif %}
</div>
<table class="table">

Loading…
Cancel
Save