Skip to content

Commit 9697c22

Browse files
committed
Merge branch 'release/2.0.0'
2 parents 95e4956 + b71fe09 commit 9697c22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+713
-1575
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
build/
22
dist/
3+
site/
34
*.egg-info/
45
*.pyc

README.md

Lines changed: 4 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<p align="center">
22
<a href="https://github.com/wuyue92tree/django-adminlte-ui">
3-
   <img alt="title" src="./images/django-adminlte-ui.jpg" width="400">
3+
   <img alt="title" src="docs/assets/images/django-adminlte-ui.jpg" width="400">
44
</a>
55
</p>
66

77
# django-adminlte-ui
88
[![PyPI Version](https://img.shields.io/pypi/v/django-adminlte-ui.svg)](https://pypi.python.org/pypi/django-adminlte-ui)
99
[![Download Status](https://img.shields.io/pypi/dm/django-adminlte-ui.svg)](https://pypi.python.org/pypi/django-adminlte-ui)
1010
[![Build Status](https://github.com/wuyue92tree/django-adminlte-ui/workflows/main/badge.svg)](https://github.com/wuyue92tree/django-adminlte-ui/workflows/main/badge.svg)
11-
[![Documentation Status](https://readthedocs.org/projects/django-adminlte-ui/badge/?version=latest)](https://django-adminlte-ui.readthedocs.io/en/latest/?badge=latest)
12-
[![Gitter](https://badges.gitter.im/django-adminlte-ui/community.svg)](https://gitter.im/django-adminlte-ui/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
11+
[![GitHub Pages](https://img.shields.io/badge/GitHub-Pages-brightgreen.svg)](https://wuyue92tree.github.io/django-adminlte-ui/)
12+
[![Gitter](https://img.shields.io/discord/K9VH3x6T?color=7289DA&logo=discord&logoColor=white)](https://discord.gg/K9VH3x6T)
1313

1414
django admin theme base on adminlte
1515

@@ -21,17 +21,6 @@ adminlte version: 2.4.18
2121
- if you find some bug, just add an issue.
2222
- if you think this project is good, just star and fork, make it better 🍉.
2323

24-
# Demo
25-
26-
[Chinese](http://django-demo.antio.top/zh-hans/admin/)
27-
28-
[English](http://django-demo.antio.top/en/admin/)
29-
30-
- username: demo
31-
- password: demo123
32-
33-
database will restore every hour. 🍌
34-
3524
# Install
3625

3726
```
@@ -46,62 +35,14 @@ pip install django-adminlte-ui
4635
INSTALLED_APPS = [
4736
'adminlteui',
4837
'django.contrib.admin',
49-
'django.contrib.auth',
50-
'django.contrib.sites',
51-
'django.contrib.sitemaps',
52-
'django.contrib.contenttypes',
53-
'django.contrib.sessions',
54-
'django.contrib.messages',
55-
'django.contrib.staticfiles',
56-
# custom menu base on treebeard
57-
'treebeard',
5838
...
5939
]
6040
```
6141

62-
# Init models
63-
```
64-
python manage.py migrate django_admin_settings
65-
```
66-
67-
# Screen shot
68-
69-
## login page
70-
![login](./images/login.jpg)
71-
72-
## dashboard
73-
![dashboard](./images/dashboard.jpg)
74-
75-
## table list
76-
![table list](./images/table-list.jpg)
77-
78-
## form page
79-
![form page](./images/form.png)
80-
81-
## general_option
82-
![general_option](./images/general_option.jpg)
83-
84-
## menu list
85-
86-
![menu list](./images/menu-list.png)
87-
88-
89-
# Features
90-
91-
- [Custom General Option](https://django-adminlte-ui.readthedocs.io/en/latest/guide/#general-option)
92-
- [Widgets](https://django-adminlte-ui.readthedocs.io/en/latest/guide/#widgets)
93-
- [Custom Menu](https://django-adminlte-ui.readthedocs.io/en/latest/guide/#menu)
94-
95-
# Todo
96-
97-
- Custom Dashboard
98-
99-
10042
# Thanks
10143

10244
- [AdminLTE](https://github.com/ColorlibHQ/AdminLTE)
10345
- [django](https://github.com/django/django)
104-
- [django-treebeard](https://github.com/django-treebeard/django-treebeard)
10546
- [django-suit](https://github.com/darklow/django-suit)
10647

10748
# Donate
@@ -110,6 +51,6 @@ Your donation take me higher. 🚀
11051

11152
<p align="left">
11253
<a href="https://github.com/wuyue92tree/django-adminlte-ui">
113-
   <img alt="title" src="./images/alipay.png" width="200px">
54+
   <img alt="title" src="docs/assets/images/alipay.png" width="200px">
11455
</a>
11556
</p>

README.rst

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,5 @@ setup
2121
'adminlteui',
2222
'django.contrib.admin',
2323
'django.contrib.auth',
24-
'django.contrib.sites',
25-
'django.contrib.sitemaps',
26-
'django.contrib.contenttypes',
27-
'django.contrib.sessions',
28-
'django.contrib.messages',
29-
'django.contrib.staticfiles',
30-
# custom menu base on treebeard
31-
'treebeard',
3224
...
3325
]
34-
35-
Init models
36-
===========
37-
38-
::
39-
40-
python manage.py migrate django_admin_settings

adminlteui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = '1.7.2'
1+
version = '2.0.0'
22
default_app_config = 'adminlteui.apps.AdminlteUIConfig'

0 commit comments

Comments
 (0)