mirror of
https://github.com/videoman/proxmark3-web.git
synced 2024-12-26 09:21:55 +08:00
updated logo, and sort
This commit is contained in:
parent
c9b350f881
commit
83a2898ec7
3 changed files with 4 additions and 1 deletions
|
@ -10,6 +10,8 @@ from flask_babel import gettext, ngettext
|
|||
from flask_babel import Babel
|
||||
from flask_babel import force_locale as babel_force_locale
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
#from flask_sqlalchemy import desc, asc
|
||||
from sqlalchemy import asc, desc
|
||||
from datetime import datetime
|
||||
|
||||
debug=1
|
||||
|
@ -214,7 +216,8 @@ if(True):
|
|||
|
||||
@app.route('/card/list')
|
||||
def card_list():
|
||||
card = card_tbl.query.all()
|
||||
#card = card_tbl.query.all()
|
||||
card = card_tbl.query.order_by(desc(card_tbl.id)).all()
|
||||
#for line in card:
|
||||
# print(line['card_number'])
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 14 KiB |
BIN
static/images/X-Force_Red_Logo_For_Dark_Backgrounds_old.png
Normal file
BIN
static/images/X-Force_Red_Logo_For_Dark_Backgrounds_old.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 61 KiB |
Loading…
Reference in a new issue