copy styles from explorer

This commit is contained in:
GroovieGermanikus 2023-10-13 21:13:39 +02:00
parent 086706c6ae
commit 3f20f774ea
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
4 changed files with 17205 additions and 2 deletions

7
app.py
View File

@ -1,9 +1,14 @@
from flask import Flask, render_template
import dbtestcall
app = Flask(__name__)
@app.route('/')
@app.route('/txerrors')
def table():
rows = dbtestcall.some_data()
return render_template('table.html', rows=rows)
@app.route('/<name>')
def hello(name=None):
return render_template('hello.html', name=name)

17184
static/a72bf4ce55ad4320.css Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
h1 {
color: rebeccapurple;
}
}

14
static/table-moderno.css Normal file
View File

@ -0,0 +1,14 @@
.cusid {
height: 15px;
width: 15px;
}
.cusid.hide {
display: none;
}
.cusid.show {
display: inline;
}
#table1 {
width: 100%;
}