TechnionYearlyProject / TheDoors

Solving the Door Permissions Problem
0 stars 1 forks source link

TheDoors

codecov

Build Status

Solving the Door Permissions Problem

instructions for the working with html pages:

were 'route_simulation' is a function in main.py that return the Simulation.html page

the 'required' keyword make this field to be required and this part 'value={{ email }}' give a default value to this field the 'email' is sent from the backend (specific in main.py in login_user method)

some details:

image

users ---> friends: every user have friends in the friends table

users ---> facilities: every user is a worker in a company, so the user have a list of facilities of the company

users ---> orders: every user can to create an order, so the orders of this users saved in this table

users ---> schedules: every order translated into user schedules at last, so this table save the schedule of every user.

rooms <---> schedules: if we want to know the schedule of this rooms, when it full or empty etc

rooms <---> facilities: every room is part of facility.

schedules <---> order: every meeting on the schedule table is related to order object that match it

image

add table for facilities