Skip to content

Commit caefaaa

Browse files
committed
Release v1.0.6
1 parent e6c4626 commit caefaaa

File tree

7 files changed

+21
-10
lines changed

7 files changed

+21
-10
lines changed

.env

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
# True for development, False for production
22
DEBUG=True
33

4-
# Deployment SERVER address
5-
SERVER=.appseed.us
6-
7-
# Used for CDN (in production)
8-
# No Slash at the end
9-
ASSETS_ROOT=/static/assets
4+
SECRET_KEY=<SECRET_key>

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ __pycache__/
88

99
# database & logs
1010
*.db
11-
*.sqlite3
11+
#*.sqlite3
1212
*.log
1313

1414
# venv

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [1.0.6] 2024-04-28
3+
## [1.0.6] 2024-04-28
44
### Changes
55

66
- Added CoreUI Theme

db.sqlite3

128 KB
Binary file not shown.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python-dotenv==1.0.1
44
str2bool==1.1
55

66
# UI
7-
django-admin-coreui==0.0.6
7+
django-admin-coreui==1.0.2
88

99
# Deployment
1010
whitenoise==6.6.0

templates/accounts/login.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
<div class="card col-md-7 p-4 mb-0">
1212
<div class="card-body">
1313
<h1>Login</h1>
14-
<p class="text-body-secondary">Sign In to your account</p>
14+
<p class="text-body-secondary">
15+
<span>USER: test / Pass12__</span>
16+
<br />
17+
<span>ADMIN: admin / Pass12__</span>
18+
</p>
1519
<form action="" method="post">
1620
{% csrf_token %}
1721

templates/includes/topbar.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<div class="row mb-4">
2+
<div class="col-xl-7 col-xxl-12">
3+
<a class="banner-coreui-pro" href="https://appseed.us/product/coreui/django/" target="_blank">
4+
<svg class="banner-coreui-pro-logo d-xl-none d-xxl-block" width="100" height="100" alt="CoreUI Logo">
5+
<use xlink:href="static/assets/brand/coreui.svg#signet"></use>
6+
</svg>
7+
<h4 class="fw-bolder">Need more? Try Django CoreUI PRO!</h4>
8+
<p>
9+
Priority on <strong>Support</strong> plus advanced features like <strong>API, Charts, DataTables, Celery (async tasks), and Docker Scripts</strong>.
10+
</p>
11+
</a></div>
12+
</div>

0 commit comments

Comments
 (0)