Browse Source

bugfix: when a user without a registration joins, showTexture wasn't found due to the second argument being empty

Natenom/support-murmur-13-1446181288462
Michael Ziegler 16 years ago
parent
commit
0164ad6b68
  1. 2
      template/mumble/mumble.htm

2
template/mumble/mumble.htm

@ -114,8 +114,10 @@
<li>{% trans "Sign-up date" %}: {{ item.mumbleuser.owner.date_joined }}</li>
</ul>
{% endif %}
{% if item.mumbleuser %}
<h2>{% trans "User Texture" %}</h2>
<img src="{% url mumble.views.showTexture DBaseObject.id item.mumbleuser.id %}" alt="user texture" />
{% endif %}
</div>
{% else %}
<div id="mumble_{{ item.id }}" class="mumble-ext x-hide-display">

Loading…
Cancel
Save