You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
|
|
class Info(models.Model):
|
|
image = models.ImageField(upload_to='info/')
|
|
title = models.TextField(max_length=20)
|
|
|
|
|
|
|
|
class Meta:
|
|
verbose_name = '获奖和荣誉' #模型定义的别名
|
|
verbose_name_plural = '获奖和荣誉' #别名对应的复数形式 |