flows: add title field

This commit is contained in:
Jens Langhammer
2020-08-28 15:23:03 +02:00
parent a977184577
commit c39d136383
7 changed files with 53 additions and 4 deletions

View File

@ -17,11 +17,12 @@ class FlowForm(forms.ModelForm):
model = Flow
fields = [
"name",
"title",
"slug",
"designation",
]
help_texts = {
"name": _("Shown as the Title in Flow pages."),
"title": _("Shown as the Title in Flow pages."),
"slug": _("Visible in the URL."),
"designation": _(
(