Skip to content

Commit b7f8bc6

Browse files
committed
init
1 parent 86d4efb commit b7f8bc6

File tree

905 files changed

+226060
-0
lines changed

Some content is hidden

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

905 files changed

+226060
-0
lines changed

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include MANIFEST.in
2+
include README.md
3+
include requirements.txt
4+
recursive-include adminlteui *

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# django-adminlte-ui
2+
3+
django admin theme base on adminlte
4+
5+
adminlte version: 2.3.6
6+
7+
# install
8+
9+
```
10+
pip install django-adminlte-ui
11+
```
12+
13+
# setup
14+
15+
```
16+
INSTALLED_APPS = [
17+
'adminlteui',
18+
'django.contrib.admin',
19+
'django.contrib.auth',
20+
'django.contrib.sites',
21+
'django.contrib.sitemaps',
22+
'django.contrib.contenttypes',
23+
'django.contrib.sessions',
24+
'django.contrib.messages',
25+
'django.contrib.staticfiles',
26+
]
27+
```

0 commit comments

Comments
 (0)