summaryrefslogtreecommitdiff
path: root/gstudio/admin/attribute_bigintegerfield.py
blob: 0707cf872501e3e8436d75fa74fa74a0c8afc40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from django.contrib import admin
from django.core.urlresolvers import NoReverseMatch
from django.utils.translation import ugettext_lazy as _
from gstudio.settings import GSTUDIO_VERSIONING
from django.template.defaultfilters import slugify

from gstudio.admin.forms import AttributeBigIntegerFieldAdminForm
import reversion
if GSTUDIO_VERSIONING == True:
    parent_class = reversion.VersionAdmin
else:
   parent_class = admin.ModelAdmin
class AttributeBigIntegerFieldAdmin(parent_class):

   fieldsets=((_('AttributeBigIntegerField'),{'fields': ('metatypes','attributetype','attributetype_scope','subject','subject_scope','svalue','value_scope','value')}),

)
   prepopulated_fields = {'svalue': ('value', )} 
   def save_model(self, request, attributebigintegerfield, form, change):
   	attributebigintegerfield.title = attributebigintegerfield.composed_sentence
        attributebigintegerfield.slug =   slugify(attributebigintegerfield.title)
        attributebigintegerfield.save()