Merge pull request #169 from ZeusWPI/documentation
Add documentation to css related functions
This commit is contained in:
commit
67c9a8486c
1 changed files with 2 additions and 1 deletions
|
@ -31,6 +31,7 @@ def home() -> str:
|
||||||
|
|
||||||
|
|
||||||
def get_css_dict(css_path):
|
def get_css_dict(css_path):
|
||||||
|
"Generate the dictionary with all the currently available themes and their names"
|
||||||
themes_dict = dict()
|
themes_dict = dict()
|
||||||
|
|
||||||
# Open the YAML file with all the themes.
|
# Open the YAML file with all the themes.
|
||||||
|
@ -71,8 +72,8 @@ def get_css_dict(css_path):
|
||||||
return themes_dict
|
return themes_dict
|
||||||
|
|
||||||
|
|
||||||
# @general_bp.route("/css-list")
|
|
||||||
def css_list():
|
def css_list():
|
||||||
|
"Generate the list of names of all the currently available themes"
|
||||||
if request.cookies.get('performance', '') == 'highPerformance':
|
if request.cookies.get('performance', '') == 'highPerformance':
|
||||||
css_path = 'static/css/themes/highPerformance/'
|
css_path = 'static/css/themes/highPerformance/'
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue