81 lines
3.2 KiB
HTML
81 lines
3.2 KiB
HTML
{% extends 'base.html' %}
|
|
{% block title %}{{ title }} | Learning management system{% endblock title %}
|
|
{% load crispy_forms_tags %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div id="input-nav"><a href="{% url 'home' %}" class="primary1">Home</a> Admin Panel</div>
|
|
<!-- <br> -->
|
|
<div class="title-1"><i class="fas fa-user-tie"></i>Admin Panel</div>
|
|
<br>
|
|
<br>
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
{% if message.tags == 'error' %}
|
|
<div class="alert alert-danger">
|
|
<i class="fas fa-exclamation-circle"></i>{{ message }}
|
|
</div>
|
|
{% else %}
|
|
<div class="alert alert-success">
|
|
<i class="fas fa-check-circle"></i>{{ message }}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="border-bottom">
|
|
Manage<a class="link" href="{% url 'lecturer_list' %}"> Lecturers »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) lecturers</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
Manage<a class="link" href="{% url 'student_list' %}"> Students »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) students</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
Manage<a class="link" href="{% url 'session_list' %}"> Session »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) sessions</p>
|
|
</div>
|
|
|
|
<div class="mt-3">
|
|
Manage<a class="link" href="{% url 'semester_list' %}"> Semester »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) semesters</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="border-bottom">
|
|
Course Add & Drop
|
|
<label class="switch switch-text switch-success switch-pill" style="float: right;">
|
|
<input type="checkbox" class="switch-input" checked="true">
|
|
<span data-on="On" data-off="Off" class="switch-label"></span>
|
|
<span class="switch-handle"></span>
|
|
</label>
|
|
<p class="text-muted">Switch
|
|
<i class="info-text py-0 px-2 bg-success">ON</i> or <i class="info-text py-0 px-2 bg-danger">OFF</i>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
Manage<a class="link" href="{% url 'programs' %}"> Programs & Courses »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) programs</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
Manage<a class="link" href="{% url 'course_allocation_view' %}"> Course Allocations »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) course allocations</p>
|
|
</div>
|
|
|
|
<div class="mt-3">
|
|
Manage<a class="link" href="{% url 'home' %}"> News & Events »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) News & Events</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|