ブログアプリ始めました。モデルは次のようになります。
from django.db import models
class Post(models.Model):
title = models.CharField(max_length=512)
image = models.ImageField(upload_to='/pathto/blogImages')
body = models.TextField()
visible = models.BooleanField()
date_created = models.DateTimeField(auto_now_add=True)
date_updated = models.DateTimeField(auto_now=True)
def __unicode__(self):
return self.title
class Tag(models.Model):
keyword = models.CharField(max_length=256)
posts = models.ManyToManyField(Post)
def __unicode__(self):
return self.keyword
syncdb を実行した後、次のような admin.py ファイルを作成しました。
from blog.models import Post
from blog.models import Tag
from django.contrib import admin
class TagInline(admin.TabularInline):
model = Tag
extra = 3
class PostAdmin(admin.ModelAdmin):
inlines = [TagInline]
admin.site.register(Post, PostAdmin)
管理エリア (http://localhost:8000/admin/blog/post/add/) にアクセスすると、次のエラーが表示されます。
Exception at /admin/blog/post/add/
<class 'blog.models.Tag'> has no ForeignKey to <class 'blog.models.Post'>
Request Method: GET
Request URL: http://localhost:8000/admin/blog/post/add/
Django Version: 1.4.1
Exception Type: Exception
Exception Value:
<class 'blog.models.Tag'> has no ForeignKey to <class 'blog.models.Post'>
Exception Location: /usr/local/lib/python2.7/dist-packages/django/forms/models.py in _get_foreign_key, line 800
Python Executable: /usr/bin/python
Python Version: 2.7.3
djangoで多対5の関係を調べたところ、https://docs.djangoproject.com/en/dev/topics/db/examples/many_to_many/が見つかりました。足りないものを見つけることができませんでした。エラーを回避するにはどうすればよいですか?