removed static (means that img path needs to be fixed), login page is beautified
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1>{{author}}</h1>
|
||||
|
||||
<table id="books" class="highlight centered">
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1>Author List</h1>
|
||||
{% if author_list %}
|
||||
<ul>
|
||||
|
@ -1,10 +1,9 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col s4"><a href="{% static "" %}{{download}}"><img src="{% static "" %}{{imgpath}}" alt="download" srcset=""></a></div>
|
||||
<div class="col s4"><a href="{{download}}"><img src="{{imgpath}}" alt="download" srcset=""></a></div>
|
||||
<div class="col s8">
|
||||
<h1> {{book.title}}</h1>
|
||||
<h4> by
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1>{{publisher}} </h1>
|
||||
|
||||
{% if publisher.released %}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1>Publishers List</h1>
|
||||
{% if publisher_list %}
|
||||
<ul>
|
||||
|
@ -1,9 +1,8 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1 class="left">⭐ {{rating}}</h1>
|
||||
<h1 class="left">Books with rating: {{rating}}</h1>
|
||||
{% if books %}
|
||||
<table id="books" class="highlight centered">
|
||||
<tr>
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1>Ratings List</h1>
|
||||
{% if rating_list %}
|
||||
<ul>
|
||||
|
@ -1,7 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1>{{tag}}</h1>
|
||||
{% if books %}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% load static %}
|
||||
|
||||
<h1>Tags List</h1>
|
||||
{% if tag_list %}
|
||||
<ul>
|
||||
|
Reference in New Issue
Block a user