インライン化したい Django モデル フィールドがあります。フィールドは多対多の関係です。そのため、「プロジェクト」と「ユーザー プロファイル」があります。各ユーザー プロファイルは、任意の数のプロジェクトを選択できます。
現在、「表形式」のインライン ビューが機能しています。ユーザープロファイルからプロジェクトを簡単に追加および削除できるように、「水平フィルター」を使用する方法はありますか?
例として添付の写真をご覧ください。
ユーザー プロファイルのモデル コードは次のとおりです。
class UserProfile(models.Model):
user = models.OneToOneField(User, unique=True)
projects = models.ManyToManyField(Project, blank=True, help_text="Select the projects that this user is currently working on.")
プロジェクトのモデル コード:
class Project(models.Model):
name = models.CharField(max_length=100, unique=True)
application_identifier = models.CharField(max_length=100)
type = models.IntegerField(choices=ProjectType)
account = models.ForeignKey(Account)
principle_investigator = models.ForeignKey(User)
active = models.BooleanField()
ビューの管理コード:
class UserProfileInline(admin.TabularInline):
model = UserProfile.projects.through
extra = 0
verbose_name = 'user'
verbose_name_plural = 'users'
class ProjectAdmin(admin.ModelAdmin):
list_display = ('name', 'application_identifier', 'type', 'account', 'active')
search_fields = ('name', 'application_identifier', 'account__name')
list_filter = ('type', 'active')
inlines = [UserProfileInline,]
admin.site.register(Project, ProjectAdmin)