mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 08:56:57 -05:00
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
from flask import request, render_template, session
|
|
|
|
|
|
class Index_HTML():
|
|
endpoints = ["/index", "/index.html"]
|
|
endpoint_name = "page_index_html"
|
|
endpoint_access_level = 0
|
|
pretty_name = "Index"
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
def __call__(self, *args):
|
|
return self.get(*args)
|
|
|
|
def get(self, *args):
|
|
|
|
tuners_in_use = self.fhdhr.device.tuners.inuse_tuner_count()
|
|
max_tuners = self.fhdhr.device.tuners.max_tuners
|
|
|
|
fhdhr_status_dict = {
|
|
"Script Directory": str(self.fhdhr.config.internal["paths"]["script_dir"]),
|
|
"Config File": str(self.fhdhr.config.config_file),
|
|
"Cache Path": str(self.fhdhr.config.internal["paths"]["cache_dir"]),
|
|
"Total Channels": len(self.fhdhr.device.channels.list),
|
|
"Tuner Usage": ("%s/%s" % (str(tuners_in_use), str(max_tuners))),
|
|
}
|
|
|
|
return render_template('index.html', session=session, request=request, fhdhr=self.fhdhr, fhdhr_status_dict=fhdhr_status_dict, list=list)
|