Revize 0fcb708f
Přidáno uživatelem Matěj Zeman před téměř 3 roky(ů)
server/doc/sql_app/main.html | ||
---|---|---|
37 | 37 |
from sql_app.api.usb_logs_web import usblogs_web |
38 | 38 |
from sql_app.api.teams import teams |
39 | 39 |
from sql_app.api.teams_web import teams_web |
40 |
from sql_app.api.auth import auth |
|
41 |
from sql_app.api.ld_logs_web import ldlogs_web |
|
42 |
from sql_app.api.bodydevices_web import body_device_web |
|
43 |
from sql_app.api.headdevices_web import head_device_web |
|
44 |
from sql_app.api.users_web import users |
|
40 | 45 |
from fastapi import FastAPI |
41 | 46 |
|
42 | 47 |
|
... | ... | |
55 | 60 |
app.include_router(pcs_web) |
56 | 61 |
app.include_router(teams_web) |
57 | 62 |
app.include_router(usblogs_web) |
63 |
app.include_router(ldlogs_web) |
|
64 |
app.include_router(body_device_web) |
|
65 |
app.include_router(users) |
|
66 |
app.include_router(head_device_web) |
|
67 |
app.include_router(auth) |
|
58 | 68 |
|
59 | 69 |
|
60 | 70 |
if __name__ == "__main__": |
Také k dispozici: Unified diff
re #9846 Changed keyman devices, body devices views. Added Head devices view. Changed filtering of logs, ldlogs, body devices, head devices and keyman devices. Changed HTML tables style and few labels.