This commit is contained in:
Your Name 2022-07-06 20:11:02 -04:00
parent 8444a44fa2
commit fef7da70e8

View file

@ -164,7 +164,7 @@ def retrieve(request, id):
{
'collection': collection,
'form': form,
'editable': collection.is_editable_by(request.user),
'editable': request.user.is_authenticated and collection.is_editable_by(request.user),
'followers': followers,
'following': following,
}