37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% extends 'base.html' %}
|
|
{% block title %}{{ title }} | 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="/">Home</a></li>
|
|
<li class="breadcrumb-item"><a href="{% url 'student_list' %}">Students</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Update</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<h4 class="fw-bold mb-3"><i class="fas fa-cog me-2"></i>Student Program Update Form</h4>
|
|
|
|
{% include 'snippets/messages.html' %}
|
|
|
|
<form action="" method="POST" enctype="multipart/form-data">{% csrf_token %}
|
|
<div class="row mb-3">
|
|
<div class="col-md-6">
|
|
<div class="card">
|
|
<p class="form-title">Program</p>
|
|
|
|
<div class="card-body">
|
|
<p>Change <a href="{{ student.student.get_absolute_url }}">{{ student.student.get_full_name }}'s</a> program</p>
|
|
<hr>
|
|
{{ form.program|as_crispy_field }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<input class="btn btn-primary" type="submit" value="Save">
|
|
</form>
|
|
{% endblock content %}
|