Advanced searching through songs.

This commit is contained in:
Jim Driessen
2017-01-25 01:37:22 +01:00
parent 6601aaeffd
commit 6ceeb30999
4 changed files with 18 additions and 8 deletions

View File

@ -8,6 +8,7 @@
<button id="request-button" class="btn btn-primary">Request</button>
<br><br>
<div id="request-container" class="hidden">
<input id="search-all" class="search-input" type="text">
<div class="table-responsive">
<table id="request-table" class="table table-striped">
<thead>

View File

@ -1,6 +1,7 @@
from django.shortcuts import render
from django.contrib.auth.decorators import login_required
@login_required
def index(request):
return render(request, 'queues/queue.html')