Basic table inline edit functionality
This commit is contained in:
10
project/main/models/person.py
Normal file
10
project/main/models/person.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.db import models
|
||||
|
||||
|
||||
class Person(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
address = models.CharField(max_length=100)
|
||||
city = models.CharField(max_length=100)
|
||||
|
||||
class Meta:
|
||||
db_table = "persons"
|
||||
Reference in New Issue
Block a user