Ross Mountjoy 47fe5c34cb 1
2020-01-29 07:21:00 -05:00

14 lines
379 B
Python

from dashmachine.paths import backgrounds_images_folder, icons_images_folder
from flask import render_template
from os import listdir
def load_files_html():
backgrounds = listdir(backgrounds_images_folder)
icons = listdir(icons_images_folder)
return render_template(
"settings_system/files.html",
backgrounds=backgrounds,
icons=icons,
)