nav color theming

This commit is contained in:
vabene1111
2020-02-17 00:11:15 +01:00
parent ad9944dd01
commit 41bfa95cb2
7 changed files with 48 additions and 3 deletions

View File

@ -29,7 +29,11 @@ class DateWidget(forms.DateInput):
class UserPreferenceForm(forms.ModelForm):
class Meta:
model = UserPreference
fields = ('theme',)
fields = ('theme', 'nav_color')
help_texts = {
'nav_color': _('Color of the top navigation bar. Not all colors work with all themes, just try them out!')
}
class ExternalRecipeForm(forms.ModelForm):