xadmin theme

我在user的adminx中设置了为True之后,我的主题还是加载不出来,具体没找到原因,网上也没有找到相应的资料,不过通过尝试,可以根据需要,添加自己需要的主题,操作如下:

1.找到xadmin文件夹下的plugins文件夹下的themes.py文件

找到主题之后,在浏览器中输入该网址,选择需要的主题的css文件,并在xadmin/static/xadmin/css/themes文件夹下新建相应主题css

然后添加该主题的静态文件地址

以及主题在后台选择时的显示

ok,这个主题已经加载完成,这是个人水平有限在不能完美解决该问题的做法,仅供参考。

时间: 2024-10-18 13:15:03

xadmin theme的相关文章

解决xadmin下设置“use_bootswatch = True”无效的问题

环境:python 2.7django 1.9xadmin采用源代码的方式引入到项目中 1.安装requests pip install requests 2./xadmin/plugins/themes.py 引入requests import requests 3.修改block_top_navmenu方法: def block_top_navmenu(self, context, nodes): themes = [ {'name': _(u"Default"), 'descri

第三百九十七节,Django+Xadmin打造上线标准的在线教育平台—其他插件使用说,主题本地化设置

第三百九十七节,Django+Xadmin打造上线标准的在线教育平台-其他插件使用说,主题本地化设置 主题设置是在xadmin\plugins\themes.py这个文件 默认xadmin是通过下面这个json文件来动态加载的.所以我们可以到它加载的json文件里下载好主题 themes.py修改方式 #coding:utf-8 from __future__ import print_function import httplib2 from django.template import lo

xadmin的主题use_bootswatch = True”无效解决方法

xadmin采用源代码的方式引入到项目中 在xadmin使用的过程中,设置"use_bootswatch = True",企图调出主题菜单,显示更多主题.然而设置了后,发现主题还是默认和bootstrap2,深入跟踪源代码,发现/xadmin/plugins/themes.py下的 block_top_navmenu 当use_bootswatch 为True的时候,就会使用httplib2去 http://bootswatch.com/api/3.json 网址获取主题菜单项.但是使

xadmin引入样式无效

当使用下面方式引入xadmin样式的时候发现并没有效果: file:adminx.py xadminxadmin views BaseSetting():    enable_themes = use_bootswatch = Some Codes...xadmin.site.register(views.CommAdminViewGlobalSettings) file:__init__.py default_app_config = "users.apps.UsersConfig"

Android的Style和Theme 译文

Style 是Window和View的一种外观和格式的属性集合.它可以作为高度,间距,字体大小,背景颜色等属性.Style是一种 xml 资源文件,放在和布局文件不同的文件夹里: Style 的设计理念和 Web一脉相承--即它们都允许你把内容和样式分离. 例如,你用Style可以把下面这个xml文件: <TextView android:layout_width="fill_parent" android:layout_height="wrap_content&quo

Linux mint cinnamon how to customize theme

Linux mint cinnamon       how to customize theme Linux mint have two style theme- system theme and user theme eg: system setting->themes like picture below: Void is user theme and the other is system theme,system theme can't be uninstalled. So the th

Notepad++ sublime text theme for C/C++

转自:https://coderwall.com/p/36x7uw 嗯,我决定还是把 整个文件贴出来,方便: 导入方法: 找到notepad++的目录,进入到themes里面. 建立一个:Waher-style.xml 然后把下面的内容copy进去.保存重启notepad++.然后在Settings 选择 Style Configurator. 在Select theme:里选择Waher-style. <?xml version="1.0" encoding="Win

Android 5.x Theme 与 ToolBar 实战

1.概述 随着Material Design的逐渐的普及,业内也有很多具有分享精神的伙伴翻译了material design specification ,中文翻译地址:Material Design 中文版.So,我们也开始Android 5.x相关的blog,那么首先了解的当然是其主题的风格以及app bar. 当然,5.x普及可能还需要一段时间,所以我们还是尽可能的去使用兼容包支持低版本的设备. ps:本博客使用: compileSdkVersion 22 buildToolsVersio

自动化监控系统(三) 搭建xadmin做网站后台

Django有个自带的admin后台,不过界面不怎么好看,这里我用xadmin 我的python版本是3.5,可以使用支持py3的xadmin:https://github.com/sshwsfc/xadmin xadmin部署步骤: 1.把xadmin整个目录拷贝到项目里面 2.需要安装的依赖包: django~=1.9.0django-crispy-forms~=1.6.0django-reversion~=2.0.0django-formtools==1.0future==0.15.2ht