Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
b0acef47a1 | |||
4f7d180d2c | |||
a35654a071 |
3 changed files with 614 additions and 552 deletions
File diff suppressed because it is too large
Load diff
15
config.ini
Normal file
15
config.ini
Normal 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
37
report_template.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue