#controllers/dashboard/index.py
import config
from bottle import template
from copy import deepcopy
from models.categorydb import getdb
from controllers.dashboard.post import get
def call():
kdict = deepcopy(config.kdict)
kdict['siteLogo'] = 'ទំព័រការផ្សាយ'
kdict['route'] = 'index'
kdict['categories'] = getdb.call('all')
posts, count = get.call()
kdict['items'] = posts
kdict['count'] = count
return template('dashboard/index.tpl', data=kdict)
#controllers/dashboard/post/get.py
import config
from bottle import template
from copy import deepcopy
from models.postdb import getdb
def call():
kdict = deepcopy(config.kdict)
kdict['siteLogo'] = 'ទំព័រការផ្សាយ'
kdict['route'] = 'index'
posts, count = getdb.call(kdict['maxItemList'])
return posts, count
#models/postdb/getdb.py
import setConnection
def call(amount):
cursor, connection = setConnection.call()
cursor.execute("SELECT * FROM post ORDER BY datetime(datetime) DESC, rowid DESC LIMIT ?", (amount,))
posts = cursor.fetchall()
cursor.execute("SELECT COUNT(*) FROM post")
count = cursor.fetchone()
cursor.close()
return posts, count[0]
<!--views/dashboard/index.tpl-->
% rebase('base.tpl')
<link href="/static/styles/partials/header.css" rel="stylesheet"></link>
<script src="/static/scripts/paginate.js"></script>
<section class='Head'>
<header class='region'>
<div class='site-logo'>{{ data['siteLogo'] }}</div>
<form action='/dashboard/search' method='post'>
<select name="select">
<option>ការផ្សាយ</option>
<option>ជំពូក</option>
<option>សៀវភៅ</option>
<option>អ្នកប្រើប្រាស់</option>
</select>
<input type='text' name="q" placeholder="Search" required />
<input type="submit" value='បញ្ជូន' />
</form>
<div class='logout'><a href='/dashboard/logout'>ចេញក្រៅ</a></div>
</header>
</section>
<link href="/static/styles/partials/body.css" rel="stylesheet"></link>
<section class='Body region'>
%include('dashboard/menu.tpl')
<%
if 'index' in data['route']:
include('dashboard/post.tpl')
elif 'category' in data['route']:
include('dashboard/category.tpl')
end
%>
</section>
<link href="/static/styles/partials/listing.css" rel="stylesheet"></link>
<section class='Listing region'>
%if 'count' in data:
<div class='info'>Total amount of item: {{data['count']}}</div>
%else:
<div class='info'>Total amount of item:</div>
%end
<div class='items'>
%if 'items' in data:
%for item in data['items']:
<div class='item'>
<a href="/{{data['route']}}/{{item[3]}}"><img class='thumb' src="{{item[1]}}" /></a>
<div class='wrapper'>
<a href="/{{data['route']}}/{{item[3]}}">{{item[0]}}</a>
<p class='date'></p>
<script>
$('.items .item .date').html(new Date("{{item[2]}}").toLocaleDateString())
</script>
</div>
<div class='icon'>
<a href='/dashboard/{{data["route"]}}/edit/{{item[3]}}'><img src='/static/images/edit.png' /></a>
<a href='/dashboard/{{data["route"]}}/delete/{{item[3]}}'><img src='/static/images/delete.png' /></a>
</div>
</div>
%end
%end
</div>
<script>
var route = "{{data['route']}}"
</script>
<div class='load-more'><img onclick='paginate(route)' src="/static/images/load-more.png" /></div>
</section>
GitHub: https://github.com/Sokhavuth/REST-API
Vercel: https://rest-api-zeta.vercel.app