我有三個表,其中一個是曼德爾,村莊和財產,在屬性表中我已經鏈接曼陀羅和村莊與外鍵,現在當我選擇mandal,只有那個特定的村莊結果應該在django admin中以財產形式顯示。我也把曼達與村莊聯繫在一起。 #models.py
from django.db import models
from django.utils import timezone
class Mandal(model
我正在創建文件共享應用程序。我能夠上傳文件,但無法將其下載鏈接提供給用戶。 請從下面看, def user_in(request):
if not request.user.is_authenticated:
return render(request, 'accounts/logout.html')
else:
if request.method
希望有一個快捷的Django-esque解決方案適用於以下挑戰,不涉及JavaScript。 目前,我創建了一個表格,顯示了多對多字段作爲一個簡單的多(內置在Django的行爲)utalising如下: Forms.py: class ProfileForm(forms.ModelForm):
class Meta:
model = Profile
exclude