12 lines
218 B
Python
12 lines
218 B
Python
|
from netforce.model import Model, fields
|
||
|
|
||
|
class Nation(Model):
|
||
|
_name="clinic.nation"
|
||
|
_string="Nationality"
|
||
|
|
||
|
_fields={
|
||
|
"name": fields.Char("Name",required=True,search=True),
|
||
|
}
|
||
|
|
||
|
Nation.register()
|