We need to check has_author using request.amo_user not request.user

This commit is contained in:
Dave Dash 2010-04-26 16:37:30 -07:00
Родитель 6670c6ef91
Коммит 3e0116b596
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -3,8 +3,10 @@
<a href="{{ remora_url('/tag/'+tag.tag_text) }}" class="tagitem">
{{ tag.tag_text }}
</a>
{% if is_tag_admin or tag.addon_tags.user == request.user or
addon and addon.has_author(request.user) %}
{% if is_tag_admin
or request.user.is_authenticated()
and (tag.addon_tags.user == request.amo_user
or (addon and addon.has_author(request.amo_user))) %}
<input type="submit" alt="{{ _('Remove', 'tags_alt_remove_tag') }}"
name="tagid" value="{{ tag.id }}" class="removetag"/>
{% endif %}