more bootstrap 5 fixes
This commit is contained in:
@@ -1,12 +1,22 @@
|
|||||||
{% extends "base.html" %} {% block main_content %}
|
{% extends "base.html" %} {% block main_content %}
|
||||||
|
|
||||||
|
|
||||||
|
<svg style="display:none">
|
||||||
|
<svg id="info" fill="currentColor" viewBox="0 0 16 16">
|
||||||
|
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
|
||||||
|
<path d="m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"/>
|
||||||
|
</svg>
|
||||||
|
</svg>
|
||||||
|
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<h3 class="offset-lg-2">{{page_title}}</h3>
|
<h3 class="offset-lg-2">{{page_title}}</h3>
|
||||||
|
<div class="row">
|
||||||
<form id="psform" class="d-flex justify-content-center form-inline" method="POST" action="">
|
<form id="psform" class="d-flex justify-content-center form-inline" method="POST" action="">
|
||||||
<input type="hidden" name="fe_msg_id" value="{{fe_msg_id}}"></input>
|
<input type="hidden" name="fe_msg_id" value="{{fe_msg_id}}"></input>
|
||||||
<h5>
|
<h6>
|
||||||
<div class="form-group">
|
<div class="input-group">
|
||||||
<label for="pagesize">{{DD.total_dups}} duplicate files ({{DD.uniq_dups}} Unique) -- Showing </label>
|
<label class="input-group-text" for="pagesize">{{DD.total_dups}} duplicate files ({{DD.uniq_dups}} Unique) -- Showing </label>
|
||||||
<select id="pagesize" class="form form-control" name="pagesize" onChange="ResetPageSize()">
|
<select id="pagesize" class="form-select" name="pagesize" onChange="ResetPageSize()">
|
||||||
{% for o in "5", "10", "15", "20", "25", "50", "75", "100", "200", "500", "1000", "5000", "20000" %}
|
{% for o in "5", "10", "15", "20", "25", "50", "75", "100", "200", "500", "1000", "5000", "20000" %}
|
||||||
<option
|
<option
|
||||||
{% if o|int == pagesize %}
|
{% if o|int == pagesize %}
|
||||||
@@ -15,11 +25,13 @@
|
|||||||
>{{o}}</option>
|
>{{o}}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select>
|
</select>
|
||||||
duplicates at a time
|
<span class="input-group-text"> duplicates at a time
|
||||||
<button class="button btn-info" onMouseOver="$('#dbox').modal('show'); return false;"><i class="fas fa-info-circle"></i></button>
|
<svg width="16" height="16" fill="currentColor"><use xlink:href="#info" onMouseOver="$('#dbox').modal('show'); return false;"></svg>
|
||||||
</div>
|
</span>
|
||||||
</h5>
|
</div class="input-group">
|
||||||
|
</h6>
|
||||||
</form>
|
</form>
|
||||||
|
</div class="row">
|
||||||
<script>
|
<script>
|
||||||
let D=[]
|
let D=[]
|
||||||
let F=[]
|
let F=[]
|
||||||
|
|||||||
Reference in New Issue
Block a user