put thead-light class in for table headings

This commit is contained in:
2021-01-10 16:30:27 +11:00
parent 1afb794bb8
commit 4ed204b9a0
2 changed files with 3 additions and 3 deletions

View File

@@ -2,8 +2,8 @@
<div class="container">
<h3 class="offset-lg-2">{{page_title}}</h3>
<div class="row">
<table class="table table table-sm col-xl-12">
<thead><tr><th>Name</th><th>Value</th></tr></thead><tbody>
<table id="settings_tbl" class="table table-sm">
<thead><tr class="thead-light"><th>Name</th><th>Value</th></tr></thead><tbody>
{% for obj in objects %}
<tr><td><a href="{{url_for('setting', id=obj.id)}}">{{obj.name}}</a></td><td>{{obj.value}}</td></tr>
{% endfor %}