flask-soc-site/templates/test.html

16 lines
390 B
HTML
Raw Normal View History

2024-08-29 21:03:36 +02:00
<table id="test" class="table table-striped">
<thead>
<tr>
<th>domain</th>
<th>creation date</th>
<th>registrar</th>
</thead>
<tbody>
<tr>
<td>{{ results.metadata['domain_name'] }}</td>
<td>{{ results.metadata['creation_date'] }}</td>
<td>{{ results.metadata['registrar'] }}</td>
</tr>
</tbody>
</table>