2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-21 14:20:54 +00:00

Update requirements

- Use markdownify for rendering
- Use markdownx for editing
This commit is contained in:
Oliver Walters
2020-01-31 21:42:30 +11:00
parent da01177d23
commit c546ed5dcd
9 changed files with 42 additions and 33 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 2.2.9 on 2020-01-31 10:22
from django.db import migrations
import markdownx.models
class Migration(migrations.Migration):
dependencies = [
('part', '0025_auto_20191118_2316'),
]
operations = [
migrations.AlterField(
model_name='part',
name='notes',
field=markdownx.models.MarkdownxField(help_text='Part notes - supports Markdown formatting'),
),
]