diff options
-rw-r--r-- | templates/patchwork/patch-list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/patchwork/patch-list.html b/templates/patchwork/patch-list.html index 14a0f0c..597806b 100644 --- a/templates/patchwork/patch-list.html +++ b/templates/patchwork/patch-list.html @@ -24,7 +24,7 @@ <input type="hidden" name="project" value="{{project.id}}"/> <table class="patchlist"> <tr> - {% if patchform or bundle %} + {% if user.is_authenticated %} <th/> {% endif %} @@ -98,7 +98,7 @@ {% if page %} {% for patch in page.object_list %} <tr class="{% cycle 'odd' 'even' %}"> - {% if patchform or bundle %} + {% if user.is_authenticated %} <td> <input type="checkbox" name="patch_id:{{patch.id}}"/> </td> |