costapy/config/globalvar.py

22 lines
396 B
Python
Raw Normal View History

2022-03-16 11:06:52 +07:00
# Your global variables
GV_base_url = "http://localhost:81"
GV_title = "CostaPy"
2023-10-24 20:37:32 +07:00
GV_menu_navbar = [
{
"name":"Home",
"href":"/",
"roles":["guest"]
},
{
"name":"About",
"href":"#",
"roles":["guest"]
},
{
"name":"CostaPy Website",
"href":"https://costapy.ditaajipratama.com",
"roles":["guest"]
}
]