Implement attachment removal

This commit is contained in:
Scot Hacker 2019-04-08 23:46:34 -07:00
parent 2e02163701
commit e7655ccfe8
5 changed files with 74 additions and 3 deletions

View file

@ -56,6 +56,11 @@ urlpatterns = [
'task/<int:task_id>/',
views.task_detail,
name='task_detail'),
path(
'attachment/remove/<int:attachment_id>/',
views.remove_attachment,
name='remove_attachment'),
]
if HAS_TASK_MERGE: