remove author and creation icon from changeset.html

This commit is contained in:
Laura Klünder 2017-06-27 03:25:24 +02:00
parent 8ea300c1a6
commit c57505812f

View file

@ -47,17 +47,11 @@
{% elif change.has_no_effect %} {% elif change.has_no_effect %}
<i class="glyphicon glyphicon-ok text-success" data-toggle="tooltip" data-placement="left" title="{% trans 'This change has no effect. You can restore it.' %}"></i> <i class="glyphicon glyphicon-ok text-success" data-toggle="tooltip" data-placement="left" title="{% trans 'This change has no effect. You can restore it.' %}"></i>
{% endif %} {% endif %}
{% if change.author and change.author != changeset.author %}
<i class="glyphicon glyphicon-user text-muted" data-toggle="tooltip" data-placement="left" title="{{ change.author.username }}"></i>
{% endif %}
{% if change.can_restore %} {% if change.can_restore %}
<button type="submit" name="restore" value="{{ change.pk }}" class="btn btn-xs btn-default" data-toggle="tooltip" data-placement="left" title="{% trans 'Restore original state' %}"> <button type="submit" name="restore" value="{{ change.pk }}" class="btn btn-xs btn-default" data-toggle="tooltip" data-placement="left" title="{% trans 'Restore original state' %}">
<i class="glyphicon glyphicon-share-alt"></i> <i class="glyphicon glyphicon-share-alt"></i>
</button> </button>
{% endif %} {% endif %}
{% if change.created %}
<i class="glyphicon glyphicon-time text-muted" data-toggle="tooltip" data-placement="left" title="{{ change.created }}"></i>
{% endif %}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}