Put import records in rows

This commit is contained in:
2023-04-26 19:35:56 -04:00
parent 9ed5d5dc1a
commit af0223ab4c

View File

@ -3,9 +3,8 @@
{% block title %}Scrobble Imports{% endblock %} {% block title %}Scrobble Imports{% endblock %}
{% block lists %} {% block lists %}
<div class="row">
{% if tsv_imports %} {% if tsv_imports %}
<div class="col-md"> <div class="row">
<h3>Audioscrobbler</h3> <h3>Audioscrobbler</h3>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped table-sm"> <table class="table table-striped table-sm">
@ -31,7 +30,7 @@
{% endif %} {% endif %}
{% if lastfm_imports %} {% if lastfm_imports %}
<div class="col-md"> <div class="row">
<h3>LastFM</h3> <h3>LastFM</h3>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped table-sm"> <table class="table table-striped table-sm">
@ -56,7 +55,7 @@
{% endif %} {% endif %}
{% if koreader_imports %} {% if koreader_imports %}
<div class="col-md"> <div class="row">
<h3>KOReader</h3> <h3>KOReader</h3>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped table-sm"> <table class="table table-striped table-sm">
@ -79,5 +78,4 @@
</div> </div>
</div> </div>
{% endif %} {% endif %}
</div>
{% endblock %} {% endblock %}