77 lines
3.5 KiB
HTML
77 lines
3.5 KiB
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %}
|
|
{% load crispy_forms_tags %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="/">{% trans 'Home' %}</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">{% trans 'Admin Panel' %}</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<div class="title-1"><i class="fas fa-user-tie"></i>{% trans 'Admin Panel' %}</div>
|
|
<br>
|
|
<br>
|
|
|
|
{% include 'snippets/messages.html' %}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="border-bottom">
|
|
{% trans 'Manage' %}<a class="link" href="{% url 'lecturer_list' %}"> {% trans 'Lecturers' %} »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) lecturers</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
{% trans 'Manage' %}<a class="link" href="{% url 'student_list' %}"> {% trans 'Students' %} »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) {% trans 'students' %}</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
{% trans 'Manage' %}<a class="link" href="{% url 'session_list' %}"> {% trans 'Session' %} »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) {% trans 'sessions' %}</p>
|
|
</div>
|
|
|
|
<div class="mt-3">
|
|
{% trans 'Manage' %}<a class="link" href="{% url 'semester_list' %}"> {% trans 'Semester' %} »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) {% trans 'semesters' %}</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="border-bottom">
|
|
{% trans 'Course Add' %} & {% trans '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">{% trans 'Switch' %}
|
|
<i class="info-text py-0 px-2 bg-success text-light">ON</i> or <i class="info-text py-0 px-2 bg-danger text-light">OFF</i>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
{% trans 'Manage' %}<a class="link" href="{% url 'programs' %}"> {% trans 'Programs' %} & {% trans 'Courses' %} »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) {% trans 'programs' %}</p>
|
|
</div>
|
|
|
|
<div class="border-bottom mt-3">
|
|
{% trans 'Manage' %}<a class="link" href="{% url 'course_allocation_view' %}"> {% trans 'Course Allocations' %} »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) {% trans 'course allocations' %}</p>
|
|
</div>
|
|
|
|
<div class="mt-3">
|
|
{% trans 'Manage' %}<a class="link" href="{% url 'home' %}"> {% trans 'News' %} & {% trans 'Events' %} »</a>
|
|
<p class="text-muted">CRUD (Create, Retrieve, Update & Delete) {% trans 'News' %} & {% trans 'Events' %}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|