{% extends 'library/base.html' %}
{% load staticfiles %}
{% load widget_tweaks %}
{% load group_check %}
{% block title %}Admin Panel
{% endblock %}
{% block extend_head %}
{% endblock %}
{% block content %}
{% comment %} {% endcomment %}
Hello {{ request.user.username }}
Search Results
|
Serial No.
|
Book id
|
Title
|
Author
|
isbn
|
Publisher
|
due date
|
issue date
|
return date
|
request_issue
|
issue status
|
fine
|
issue now
|
{% for det in detail %}
| {{ forloop.counter }} |
{% if det.book_id %}
{{ det.book_id }} |
{% else %}
{{ det }} |
{% endif %}
{{ det.title }} |
{{ det.author }} |
{{ det.isbn }} |
{{ det.publisher }} |
{{ det.due_date }} |
{{ det.issue_date }} |
{{ det.return_date }} |
{{ det.request_issue }} |
{{ det.issue_status }} |
{{ det.fine }} |
|
{% endfor %}
{% endblock %}
{% block scripts %}
{% endblock %}