diff --git a/pandora/item/views.py b/pandora/item/views.py index 83b5661dd..93af2f609 100644 --- a/pandora/item/views.py +++ b/pandora/item/views.py @@ -483,7 +483,8 @@ def get(request): for k in settings.CONFIG['itemKeys']: if 'capability' in k \ and not check_capability(k['capability']) \ - and k['id'] in info: + and k['id'] in info \ + and k['id'] not in ('parts', 'durations'): del info[k['id']] info['editable'] = item.editable(request.user) response['data'] = info