non-functional sub modal

This commit is contained in:
Corban-Lee Jones 2024-04-23 23:33:10 +01:00
parent 12db49c4f7
commit accc2064da
2 changed files with 28 additions and 6 deletions

View File

@ -0,0 +1,21 @@
<div id="subFormModal" class="modal fade" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<form id="subForm" novalidate>
<div class="modal-header">
<h5 class="modal-title">
Add Subscription
</h5>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary">Submit</button>
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
</div>
</form>
</div>
</div>
</div>

View File

@ -43,11 +43,11 @@
<div class="table-responsive mt-3">
<table id="subTable" class="table table-hover">
<thead>
<tr>
{% comment %} <th scope="col" class="text-center no-sort">
<!-- <tr>
<th scope="col" class="text-center no-sort">
<input type="checkbox" class="form-check-input" />
</th> {% endcomment %}
{% comment %} <th scope="col">Name</th>
</th> -->
<!-- <th scope="col">Name</th>
<th scope="col">RSS URL</th>
<th scope="col">Channels</th>
<th scope="col">Created</th>
@ -57,8 +57,8 @@
<a href="#" class="text-body">
<i class="bi bi-plus-lg"></i>
</a>
</th> {% endcomment %}
</tr>
</th>
</tr> -->
</thead>
<tbody>
{% comment %} <tr>
@ -98,6 +98,7 @@
</div>
</div>
{% include "home/includes/servermodal.html" %}
{% include "home/includes/submodal.html" %}
{% endblock content %}
{% block javascript %}