Create Top Rental Page
#\controllers\toprental.py
import config, re, json
from bottle import template, route, request, redirect

@route('/toprental')
def getTopRental():
  return template('toprental', data=config.kargs)
<!--\views\toprental.tpl-->

%include("./partials/header.tpl")

<div class="main" id="main">
  <div class="content" id="content">
    <div class="top-widget">
    <span>TOP RENTAL</span>
    </div>
    
    <div id="table-customer"></div>
    <div id="table-bicycle"></div>
    
  </div><!--content-->

</div><!--main-->

%include("./partials/footer")

GitHub: https://github.com/Sokhavuth/Rental-Bicycle-App
Heroku: https://khmerweb-rba.herokuapp.com/