Source code for shuup.admin.modules.manufacturers.views.edit

# -*- coding: utf-8 -*-
# This file is part of Shuup.
#
# Copyright (c) 2012-2017, Shoop Commerce Ltd. All rights reserved.
#
# This source code is licensed under the OSL-3.0 license found in the
# LICENSE file in the root directory of this source tree.
from __future__ import unicode_literals

from django.forms.models import ModelForm

from shuup.admin.utils.views import CreateOrUpdateView
from shuup.core.models import Manufacturer


[docs]class ManufacturerForm(ModelForm):
[docs] class Meta: model = Manufacturer exclude = ("identifier", "created_on")
[docs]class ManufacturerEditView(CreateOrUpdateView): model = Manufacturer form_class = ManufacturerForm template_name = "shuup/admin/manufacturers/edit.jinja" context_object_name = "manufacturer"