├── core ├── __init__.py ├── .env.example ├── asgi.py ├── wsgi.py ├── urls.py └── settings.py ├── library ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0005_auto_20210415_1729.py │ ├── 0006_auto_20210415_1730.py │ ├── 0007_auto_20210417_0835.py │ ├── 0003_auto_20210326_2011.py │ ├── 0001_initial.py │ ├── 0004_auto_20210415_1728.py │ └── 0002_fine_issue.py ├── tests.py ├── apps.py ├── urls.py ├── utilities.py ├── admin.py ├── models.py └── views.py ├── student ├── __init__.py ├── migrations │ ├── __init__.py │ └── 0001_initial.py ├── tests.py ├── apps.py ├── urls.py ├── models.py ├── admin.py └── views.py ├── templates ├── library │ ├── paystatus.html │ ├── myfines.html │ ├── allfines.html │ ├── payfine.html │ ├── myissues.html │ ├── addbook.html │ ├── allissues.html │ └── home.html ├── footer.html ├── student │ ├── login.html │ └── signup.html ├── base.html └── nav.html ├── screenshots ├── login.png ├── signup.png ├── allbooks.png ├── allfines.png ├── myfines.png ├── myissues.png ├── all-issues.png ├── paysuccess.png ├── search-book.png ├── all-students.png ├── choospaymode.png ├── search-author.png ├── user-details.png ├── confirmpayment.png ├── homepage-student.png ├── issue-requests.png ├── signup-same-id.png ├── student-details.png └── admin-dashboard-home.png ├── requirements.txt ├── manage.py ├── .gitignore └── Readme.md /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/library/paystatus.html: -------------------------------------------------------------------------------- 1 |
Paid on {{fine.datetime_of_payment}}
15 | {% else %} 16 | Pay 21 | {% endif %} 22 |issued
98 | {% elif book in requestedbooks %} 99 |issued requested
100 | {% else %} 101 | 102 | Request Issue 107 | {% endif %} {% endif %} {% if user.is_superuser %} 108 | Edit 113 | {% endif %} 114 |issued
134 | {% elif book in requestedbooks %} 135 |issued requested
136 | {% else %} 137 | Request Issue 142 | {% endif %} {% endif %} 143 |issued
174 | {% elif book in requestedbooks %} 175 |issued requested
176 | {% else %} 177 | Request Issue 182 | {% endif %} {% endif %} {% if user.is_superuser %} 183 | Edit 188 | {% endif %} 189 |