put thead-light class in for table headings
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
<h3 class="offset-lg-2">{{page_title}} -- {{view_path}}</h3>
|
<h3 class="offset-lg-2">{{page_title}} -- {{view_path}}</h3>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<table class="table table table-sm col-xl-12">
|
<table class="table table table-sm col-xl-12">
|
||||||
<thead><tr><th>Name</th></tr></thead><tbody>
|
<thead><tr class="thead-light"><th>Name</th></tr></thead><tbody>
|
||||||
{% for obj in objects %}
|
{% for obj in objects %}
|
||||||
<tr><td>{{obj.name}}</td></td></tr>
|
<tr><td>{{obj.name}}</td></td></tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<h3 class="offset-lg-2">{{page_title}}</h3>
|
<h3 class="offset-lg-2">{{page_title}}</h3>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<table class="table table table-sm col-xl-12">
|
<table id="settings_tbl" class="table table-sm">
|
||||||
<thead><tr><th>Name</th><th>Value</th></tr></thead><tbody>
|
<thead><tr class="thead-light"><th>Name</th><th>Value</th></tr></thead><tbody>
|
||||||
{% for obj in objects %}
|
{% for obj in objects %}
|
||||||
<tr><td><a href="{{url_for('setting', id=obj.id)}}">{{obj.name}}</a></td><td>{{obj.value}}</td></tr>
|
<tr><td><a href="{{url_for('setting', id=obj.id)}}">{{obj.name}}</a></td><td>{{obj.value}}</td></tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
Reference in New Issue
Block a user