Skip to content

Commit

Permalink
Merge branch 'release/2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
wuyue92tree committed Jun 6, 2023
2 parents 95e4956 + b71fe09 commit 9697c22
Show file tree
Hide file tree
Showing 50 changed files with 713 additions and 1,575 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
build/
dist/
site/
*.egg-info/
*.pyc
67 changes: 4 additions & 63 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<p align="center">
<a href="https://github.com/wuyue92tree/django-adminlte-ui">
   <img alt="title" src="./images/django-adminlte-ui.jpg" width="400">
   <img alt="title" src="docs/assets/images/django-adminlte-ui.jpg" width="400">
</a>
</p>

# django-adminlte-ui
[![PyPI Version](https://img.shields.io/pypi/v/django-adminlte-ui.svg)](https://pypi.python.org/pypi/django-adminlte-ui)
[![Download Status](https://img.shields.io/pypi/dm/django-adminlte-ui.svg)](https://pypi.python.org/pypi/django-adminlte-ui)
[![Build Status](https://github.com/wuyue92tree/django-adminlte-ui/workflows/main/badge.svg)](https://github.com/wuyue92tree/django-adminlte-ui/workflows/main/badge.svg)
[![Documentation Status](https://readthedocs.org/projects/django-adminlte-ui/badge/?version=latest)](https://django-adminlte-ui.readthedocs.io/en/latest/?badge=latest)
[![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)
[![GitHub Pages](https://img.shields.io/badge/GitHub-Pages-brightgreen.svg)](https://wuyue92tree.github.io/django-adminlte-ui/)
[![Gitter](https://img.shields.io/discord/K9VH3x6T?color=7289DA&logo=discord&logoColor=white)](https://discord.gg/K9VH3x6T)

django admin theme base on adminlte

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

# Demo

[Chinese](http://django-demo.antio.top/zh-hans/admin/)

[English](http://django-demo.antio.top/en/admin/)

- username: demo
- password: demo123

database will restore every hour. 🍌

# Install

```
Expand All @@ -46,62 +35,14 @@ pip install django-adminlte-ui
INSTALLED_APPS = [
'adminlteui',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.sites',
'django.contrib.sitemaps',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# custom menu base on treebeard
'treebeard',
...
]
```

# Init models
```
python manage.py migrate django_admin_settings
```

# Screen shot

## login page
![login](./images/login.jpg)

## dashboard
![dashboard](./images/dashboard.jpg)

## table list
![table list](./images/table-list.jpg)

## form page
![form page](./images/form.png)

## general_option
![general_option](./images/general_option.jpg)

## menu list

![menu list](./images/menu-list.png)


# Features

- [Custom General Option](https://django-adminlte-ui.readthedocs.io/en/latest/guide/#general-option)
- [Widgets](https://django-adminlte-ui.readthedocs.io/en/latest/guide/#widgets)
- [Custom Menu](https://django-adminlte-ui.readthedocs.io/en/latest/guide/#menu)

# Todo

- Custom Dashboard


# Thanks

- [AdminLTE](https://github.com/ColorlibHQ/AdminLTE)
- [django](https://github.com/django/django)
- [django-treebeard](https://github.com/django-treebeard/django-treebeard)
- [django-suit](https://github.com/darklow/django-suit)

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

<p align="left">
<a href="https://github.com/wuyue92tree/django-adminlte-ui">
   <img alt="title" src="./images/alipay.png" width="200px">
   <img alt="title" src="docs/assets/images/alipay.png" width="200px">
</a>
</p>
15 changes: 0 additions & 15 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,5 @@ setup
'adminlteui',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.sites',
'django.contrib.sitemaps',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# custom menu base on treebeard
'treebeard',
...
]

Init models
===========

::

python manage.py migrate django_admin_settings
2 changes: 1 addition & 1 deletion adminlteui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = '1.7.2'
version = '2.0.0'
default_app_config = 'adminlteui.apps.AdminlteUIConfig'
Loading

0 comments on commit 9697c22

Please sign in to comment.