Skip to content

Commit

Permalink
Remove "page" from labels
Browse files Browse the repository at this point in the history
  • Loading branch information
jraddaoui committed Jun 3, 2019
1 parent be66f97 commit eed005c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions dips/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,11 +445,7 @@ class Content(models.Model):

# Key label relation for display in the form.
# They are prefixed with a number to maintain order.
LABELS = {
"01_home": _("Home page"),
"02_login": _("Login page"),
"03_faq": _("FAQ page"),
}
LABELS = {"01_home": _("Home"), "02_login": _("Login"), "03_faq": _("FAQ")}

def __str__(self):
return self.content
Expand Down

0 comments on commit eed005c

Please sign in to comment.