﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1401	Windows XP 2nd Ed. Firefox 1.5 Admin Console - Values added do not show for Change, etc.	intelligentdesign@…	Adrian Holovaty	"I have been working through the tutorials and the values that are added for the Admin tutorial do not display again as items in either the Change or as a foreign key in the drop down. I can use a tool to view the sqlite database and there are rows with values but nothing displays. Below is the script that controls my exercise.

from django.core import meta

# Create your models here.


from django.core import meta

class Character(meta.Model):
    character_name = meta.CharField(maxlength=30)
    character_class = meta.CharField(maxlength=25)
    class META:
        admin = meta.Admin()  
    def _repr_(self):
        return ""%s %s"" (self.character_name, self.character_class)

    
class Skill(meta.Model):
    character=meta.ForeignKey(Character)
    Strength = meta.IntegerField()
    Wisdom = meta.IntegerField()
    class META:
        admin = meta.Admin()      
    def _repr_(self):
        return ""%s %s"" (self.character, self.Strenth, self.Wisdom)

"	defect	closed	contrib.admin		normal	invalid			Unreviewed	0	0	0	0	0	0
