Hi Serdar!

Yeah,i mean django admin by webinterface!I didn't created the spessific 
table,i already had a legacy database running.For example i have the next 
code for 1 of my tables in models.py:

class Links(models.Model):
    interfacein = models.CharField(max_length=20L, db_column='InterfaceIn') 
    interfaceout = models.CharField(max_length=20L, 
db_column='InterfaceOut') 
    capacity = models.FloatField(null=True, db_column='Capacity', 
blank=True) 
    delay = models.FloatField(null=True, db_column='Delay', blank=True)
    class Meta:
        db_table = 'Links'

So,on my interface when i click on the "Links" i can see the objects that 
are into my database,all of them have the name "Links objects" and then 
when i click on 1 of them THEN i can see my fields.I don't want to change 
the name on any field or something but the name of "Link objects"

Links-->Links object(multiple times)[i want to change 
that]-->interfacein,interfaceout,capacity,delay(with their values)
Thx for ur time and i hope you can help me :))

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to