Skip to content

Commit f0fb547

Browse files
committed
Release v1.0.6 - JS & Template Refactoring
1 parent 8e7a35d commit f0fb547

36 files changed

+66
-124
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## [1.0.6] 2022-11-24
4+
### Improvements
5+
6+
- Fix JS Errors
7+
- Use an unified template for Scripts
8+
- Load all JS Files
9+
310
## [1.0.5] 2022-11-24
411
### Improvements
512

setup.py

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

99
setup(
1010
name='django-theme-soft-design',
11-
version='1.0.5',
11+
version='1.0.6',
1212
zip_safe=False,
1313
packages=find_packages(),
1414
include_package_data=True,

theme_soft_design/templates/accounts/password_change.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

theme_soft_design/templates/accounts/password_change_done.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

theme_soft_design/templates/accounts/password_reset.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

theme_soft_design/templates/accounts/password_reset_complete.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

theme_soft_design/templates/accounts/password_reset_confirm.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

theme_soft_design/templates/accounts/password_reset_done.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

theme_soft_design/templates/accounts/sign-in.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

theme_soft_design/templates/accounts/sign-up.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'layouts/base_background.html' %}
1+
{% extends 'layouts/base_sections.html' %}
22
{% load static %}
33

44
{% block title %} Soft UI Design System by Creative Tim {% endblock title %}

0 commit comments

Comments
 (0)