Compare commits

..

3 commits
ga-rem ... main

Author SHA1 Message Date
b0acef47a1 Fixed a few bug reported from testing 2023-05-30 18:39:44 +02:00
4f7d180d2c Changes from feedback 2023-05-29 08:23:39 +02:00
a35654a071 Added additional changes and documentation 2023-05-19 19:01:57 +02:00
3 changed files with 605 additions and 564 deletions

File diff suppressed because it is too large Load diff

15
config.ini Normal file
View file

@ -0,0 +1,15 @@
[SQL]
driver = mysql
host = 127.0.0.1
databaseName = testrail
user = testrail
password = 123456789
port = 6666
[CASSANDRA]
host = cassandra
databaseName = testrail
user = casandra
password = cassandra
port = 9042
keyspace = testrail

37
report_template.html Normal file
View file

@ -0,0 +1,37 @@
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>File/Attachment</th>
<th>File path</th>
<th>File name</th>
<th>Thumb 1</th>
<th>Thumb 2</th>
<th>Size</th>
<th>Creation Time</th>
</tr>
</thead>
<tbody>
{{table_rows}}
</tbody>
</table>
</body>
</html>