Source code for geonode.themes.admin
#########################################################################
#
# Copyright (C) 2018 OSGeo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#########################################################################
from django import forms
from django.contrib import admin
from .models import GeoNodeThemeCustomization, JumbotronThemeSlide
[docs]
class GeonodeThemCustomizationForm(forms.ModelForm):
[docs]
class Meta:
[docs]
widgets = {
"body_color": forms.TextInput(attrs={"type": "color"}),
"body_text_color": forms.TextInput(attrs={"type": "color"}),
"navbar_color": forms.TextInput(attrs={"type": "color"}),
"navbar_text_color": forms.TextInput(attrs={"type": "color"}),
"navbar_text_hover": forms.TextInput(attrs={"type": "color"}),
"navbar_text_hover_focus": forms.TextInput(attrs={"type": "color"}),
"navbar_dropdown_menu": forms.TextInput(attrs={"type": "color"}),
"navbar_dropdown_menu_text": forms.TextInput(attrs={"type": "color"}),
"navbar_dropdown_menu_hover": forms.TextInput(attrs={"type": "color"}),
"navbar_dropdown_menu_divider": forms.TextInput(attrs={"type": "color"}),
"jumbotron_color": forms.TextInput(attrs={"type": "color"}),
"jumbotron_title_color": forms.TextInput(attrs={"type": "color"}),
"jumbotron_text_color": forms.TextInput(attrs={"type": "color"}),
"search_bg_color": forms.TextInput(attrs={"type": "color"}),
"search_title_color": forms.TextInput(attrs={"type": "color"}),
"search_link_color": forms.TextInput(attrs={"type": "color"}),
"copyright_color": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_background": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_border": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_1_button_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_1_button_hover": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_1_link_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_2_button_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_2_button_hover": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_2_link_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_3_button_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_3_button_hover": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_3_link_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_4_button_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_4_button_hover": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_button_4_link_colour": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_showagain_background": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_showagain_border": forms.TextInput(attrs={"type": "color"}),
"cookie_law_info_text": forms.TextInput(attrs={"type": "color"}),
"footer_bg_color": forms.TextInput(attrs={"type": "color"}),
"footer_text_color": forms.TextInput(attrs={"type": "color"}),
"footer_href_color": forms.TextInput(attrs={"type": "color"}),
}
@admin.register(GeoNodeThemeCustomization)
@admin.register(JumbotronThemeSlide)