add ugly search form in base template
This commit is contained in:
		
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -7,6 +7,7 @@ class SearchForm(forms.Form):
 | 
				
			|||||||
    title = forms.CharField(label="Title", max_length=200)
 | 
					    title = forms.CharField(label="Title", max_length=200)
 | 
				
			||||||
    author = forms.CharField(label='Author', max_length=100)
 | 
					    author = forms.CharField(label='Author', max_length=100)
 | 
				
			||||||
    identifier = forms.CharField(label='Identifier(ISBN, Google-id, amazon id)', max_length=20)
 | 
					    identifier = forms.CharField(label='Identifier(ISBN, Google-id, amazon id)', max_length=20)
 | 
				
			||||||
 | 
					    generic = forms.CharField(label='All', max_length=100, required=False)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -58,7 +58,6 @@
 | 
				
			|||||||
        </ul>
 | 
					        </ul>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <ul class="left">
 | 
					        <ul class="left">
 | 
				
			||||||
          <li><a href="{% url 'search' %}">Search</a></li>
 | 
					 | 
				
			||||||
          <li><a href="{% url 'books' %}">Books</a></li>
 | 
					          <li><a href="{% url 'books' %}">Books</a></li>
 | 
				
			||||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-authors">Authors<i
 | 
					          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-authors">Authors<i
 | 
				
			||||||
                class="material-icons right">arrow_drop_down</i></a></li>
 | 
					                class="material-icons right">arrow_drop_down</i></a></li>
 | 
				
			||||||
@@ -66,6 +65,18 @@
 | 
				
			|||||||
                class="material-icons right">arrow_drop_down</i></a></li>
 | 
					                class="material-icons right">arrow_drop_down</i></a></li>
 | 
				
			||||||
          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-tags">Tags<i
 | 
					          <li><a class="dropdown-trigger" href="#!" data-target="dropdown-tags">Tags<i
 | 
				
			||||||
                class="material-icons right">arrow_drop_down</i></a></li>
 | 
					                class="material-icons right">arrow_drop_down</i></a></li>
 | 
				
			||||||
 | 
					          <li><a href="{% url 'search' %}">Advanced search</a></li>
 | 
				
			||||||
 | 
					          <li>
 | 
				
			||||||
 | 
					            <!-- stefan, this div. can we have this int the navbar? -->
 | 
				
			||||||
 | 
					            <div class="container">
 | 
				
			||||||
 | 
					              <form action="{% url 'results' %}" method="get" style="padding-top:2em">
 | 
				
			||||||
 | 
					                <label for="generic"></label>
 | 
				
			||||||
 | 
					                <input id="generic" type="text" name="generic" value="">
 | 
				
			||||||
 | 
					                <button class="waves-effect waves-light btn green accent-4" type="submit">search</button>
 | 
				
			||||||
 | 
					              </form>
 | 
				
			||||||
 | 
					            </div>
 | 
				
			||||||
 | 
					            <!-- this is the end of the div, stefan -->
 | 
				
			||||||
 | 
					          </li>
 | 
				
			||||||
        </ul>
 | 
					        </ul>
 | 
				
			||||||
        <ul id="dropdown-authors" class="dropdown-content">
 | 
					        <ul id="dropdown-authors" class="dropdown-content">
 | 
				
			||||||
          {% for author in unique_authors %}
 | 
					          {% for author in unique_authors %}
 | 
				
			||||||
@@ -89,6 +100,8 @@
 | 
				
			|||||||
        </ul>
 | 
					        </ul>
 | 
				
			||||||
        {% endif %}
 | 
					        {% endif %}
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    </nav>
 | 
					    </nav>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
  <script>
 | 
					  <script>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -41,6 +41,7 @@ class ResultsView(generic.ListView):  # no clue if this is secure.
 | 
				
			|||||||
        title = self.request.GET.get('title')
 | 
					        title = self.request.GET.get('title')
 | 
				
			||||||
        author = self.request.GET.get('author')
 | 
					        author = self.request.GET.get('author')
 | 
				
			||||||
        identifier = self.request.GET.get("identifier")
 | 
					        identifier = self.request.GET.get("identifier")
 | 
				
			||||||
 | 
					        generic = self.request.GET.get("generic")
 | 
				
			||||||
        books = Book.objects.prefetch_related("tags", "ratings")
 | 
					        books = Book.objects.prefetch_related("tags", "ratings")
 | 
				
			||||||
        if title:
 | 
					        if title:
 | 
				
			||||||
            books = books.filter(sort__icontains=title)
 | 
					            books = books.filter(sort__icontains=title)
 | 
				
			||||||
@@ -48,6 +49,12 @@ class ResultsView(generic.ListView):  # no clue if this is secure.
 | 
				
			|||||||
            books = books.filter(author_sort__icontains=author)
 | 
					            books = books.filter(author_sort__icontains=author)
 | 
				
			||||||
        if identifier:
 | 
					        if identifier:
 | 
				
			||||||
            books = books.filter(identifier__val=identifier)
 | 
					            books = books.filter(identifier__val=identifier)
 | 
				
			||||||
 | 
					        if generic:
 | 
				
			||||||
 | 
					            books = books.filter(
 | 
				
			||||||
 | 
					                Q(sort__icontains=generic) | 
 | 
				
			||||||
 | 
					                Q(author_sort__icontains=generic) | 
 | 
				
			||||||
 | 
					                Q(identifier__val=generic)
 | 
				
			||||||
 | 
					            )
 | 
				
			||||||
        return books
 | 
					        return books
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -57,6 +64,7 @@ class AuthorListView(generic.ListView):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
class BookListView(generic.ListView):
 | 
					class BookListView(generic.ListView):
 | 
				
			||||||
    model = Book
 | 
					    model = Book
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def get_queryset(self):
 | 
					    def get_queryset(self):
 | 
				
			||||||
        # Annotate the books with ratings, tags, etc
 | 
					        # Annotate the books with ratings, tags, etc
 | 
				
			||||||
        # books = Book.objects.annotate(
 | 
					        # books = Book.objects.annotate(
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user