I am looking for alternatives to setup a server in work place which does not allow to setup new software to computers to check and reserve rooms for meetings both through local network computers or possible from home / on the move.
I of course would like to have thy UI in Webserver using one of the Python frameworks (mayby web2py) for dealing with management of reservations. I have idea of this kind of UI
ROOM xxx DAY X-Y-Z
+-----------------------------------+
| Description |
+-----------------------------------+
Reserved | | | | | | |X| |X|X| | | | | | | | |
+-----------------------------------+
| | | | | | |X| |X|X| | | | | | | | |
+-----------------------------------+
| | | | | | |X| | | | |X| | | |X| | |
+-----------------------------------+
| | | | | | |X|X|X| | | |X|X| | | | |
+-----------------------------------+
Idea is that time slots of for example 15 min each are described by the boxes for every quarter hour of the day and mark indicates who reserved it. By clicking reserved box you would get description of the reservation, for free space you could mayby have reservation from this same display.
I am wondering how to handle this. Do the web frameworks have support for this, or should I just dive into HTML/CSS?
I have earlier done some coding with CGI and own Python code to produce table in HTML for web display and some Jython/Swing code, but I have not really deep experience on web frameworks for Python .