我想在Django模型中存储降价数据。 我正在使用django == 1.11 目前,我正在使用django-markdown软件包,该软件包最近4年没有更新。 您能否建议一个维护良好的模块,该模块将提供带有验证的降价字段?
答案 0 :(得分:0)
我使用markdownx,对我来说做得很好。我将其与django-markdown2一起使用来显示它。在models.py中,它很容易做到:
from django.db import models
from markdownx.models import MarkdownxField
# Create your models here.
class Post(models.Model):
title = models.CharField(max_length=225, unique=True)
text = MarkdownxField()
date_created = models.DateTimeField(auto_now_add=True)
它还允许您使用以下命令在管理员中查看降价促销:
from django.contrib import admin
from markdownx.admin import MarkdownxModelAdmin
from .models import Post
# Register your models here.
class PostAdmin(MarkdownxModelAdmin):
list_display = ['title', 'date_created']
admin.site.register(Post, PostAdmin)