24 lines
878 B
HTML
24 lines
878 B
HTML
{% extends "templates/base.html" %}
|
|
{% from "www/macros/common_macro.html" import MentorsSection %}
|
|
|
|
{% block title %} {{ student.full_name }} - {{ course.title }} {% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="common-page-style">
|
|
<div class="container certificate-page">
|
|
|
|
<div class="breadcrumb">
|
|
<a class="dark-links" href="/courses">All Courses</a>
|
|
<img class="ml-1 mr-1" src="/assets/community/icons/chevron-right.svg">
|
|
<a class="dark-links" href="/courses/{{ course.name }}">{{ course.title }}</a>
|
|
</div>
|
|
|
|
<div class="comment-footer mb-5">
|
|
<div class="button is-secondary pull-right" id="export-as-pdf" data-certificate="{{ certificate.name }}"
|
|
data-certificate-name="{{ student.full_name }} - {{ course.title }}">Export</div>
|
|
</div>
|
|
{% include "community/templates/certificate.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|