i'm using Bottle. I have defined several routes with their corresponding view function for example
/log/<page>
/showlogsWhat is the correct way to access those routes using get_url? I try to:
get_url( 'log', page=page )
get_url( 'showlogs' )and the error iam receiving is:
NameError: name 'get_url' is not definedIf i try to use `url' instead i get this error:
bottle.RouteBuildError: ('No route with that name.', 'log')
bottle.RouteBuildError: ('No route with that name.', 'showlogs')How am i supposed to access the endpoints?!