diff --git a/templates/taskapp/tasklist.html b/templates/taskapp/tasklist.html
index 9200a60..8ca11e0 100644
--- a/templates/taskapp/tasklist.html
+++ b/templates/taskapp/tasklist.html
@@ -37,9 +37,11 @@
{{ task.time_of_create|date:'d N yг H:i:s' }} |
{% if task.attachment %}{{ task.attachment.name }}{% else %}―{% endif %} |
+ {% if perms.taskapp.can_change_task %}
+ {% endif %}
diff --git a/templates/taskapp/tasklist_finish.html b/templates/taskapp/tasklist_finish.html
index 0a8834a..5213ba7 100644
--- a/templates/taskapp/tasklist_finish.html
+++ b/templates/taskapp/tasklist_finish.html
@@ -38,12 +38,16 @@
| {{ task.time_of_create|date:'d N yг H:i:s' }} |
{% if task.attachment %}{{ task.attachment.name }}{% else %}―{% endif %} |
+ {% if perms.taskapp.can_change_task %}
+ {% endif %}
+ {% if perms.taskapp.can_delete_task %}
+ {% endif %}
|
{% empty %}
diff --git a/templates/taskapp/tasklist_own.html b/templates/taskapp/tasklist_own.html
index 9c66875..8d6cde9 100644
--- a/templates/taskapp/tasklist_own.html
+++ b/templates/taskapp/tasklist_own.html
@@ -35,9 +35,11 @@
{{ task.time_of_create|date:'d N yг H:i:s' }} |
{% if task.attachment %}{{ task.attachment.name }}{% else %}―{% endif %} |
+ {% if perms.taskapp.can_change_task %}
+ {% endif %}
{% if perms.taskapp.can_remind %}
|