2011-10-22 151 views
29

我有一個類似的模式:Django管理:使現場編輯在添加,但不能編輯

class Product(models.Model): 
    third_party_id = models.CharField(max_length=64, blank=False, unique=True) 

使用Django的默認主鍵。我希望用戶能夠通過在添加頁面上設置third_party_id來添加產品,但我不希望該字段在編輯頁面中可編輯,以避免破壞third_party_id。在Django文檔中,相同的設置似乎用於添加和編輯。這可能嗎?

回答

40

不要設置self.readonly_fields避免線程問題。相反,覆蓋get_readonly_fields方法:

def get_readonly_fields(self, request, obj=None): 
    if obj: # obj is not None, so this is an edit 
     return ['third_party_id',] # Return a list or tuple of readonly fields' names 
    else: # This is an addition 
     return [] 
+2

非常酷,不知道這種方法。 +1。如果沒有重寫方法,我們可以做些什麼?任何策略?非常感激。 –

+1

@YUji,ModelAdmin的get_form和get_formset方法幾乎覆蓋了每個用例。您可能需要查看代碼(options.py),當我尋找該主題的解決方案時,這些方法未包含在文檔中。 – shanyu

+0

我只是想在一般的Python中,如果沒有一個方便的方法來覆蓋。只是一個lock.acquire()? –

0

我不確定這是否是最好的方法,但是您可以爲管理員定義自己的表單。和自定義的驗證third_party_id,拒絕,如果它已經被設置:

Admin.py

class ProductAdminForm(forms.ModelForm): 
    class Meta: 
     model = Product 

    def clean_third_party_id(self): 
     cleaned_data = self.cleaned_data 
     third_party_id = cleaned_data['third_party_id'] 
     id = cleaned_data['id'] 
     obj = Product.objects.get(id=id) 
     if obj.third_party_id != third_party_id: 
      raise ValidationError("You cannot edit third_party_id, it must stay as %s" % obj.third_party_id) 
     return third_party_id 


class ProductAdmin(admin.Admin): 
    form = [ProductAdminForm,] 
+0

我接受了@ shanyu的回答,但是謝謝! –

5

以上是有幫助的(使用get_readonly_fields單于的答案),但它不正常,如果在「StackedInline」使用工作。結果是任何標記爲只讀的字段的兩個副本,並且在「添加」實例中不可編輯。看到這個bug:https://code.djangoproject.com/ticket/15602

希望這可以節省一些人的搜索!