From 5d7ee16c8893838110abe1ea6a30bfb465339168 Mon Sep 17 00:00:00 2001 From: Hardeep Date: Sun, 26 Nov 2023 22:24:23 +0530 Subject: [PATCH] Courses / Programs by a school List of program offered by a selected school --- ORM/coursesByschool.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ORM/coursesByschool.html diff --git a/ORM/coursesByschool.html b/ORM/coursesByschool.html new file mode 100644 index 00000000..c93749e0 --- /dev/null +++ b/ORM/coursesByschool.html @@ -0,0 +1,27 @@ +{% from "frappe/templates/includes/avatar_macro.html" import avatar %} +{% extends "templates/web.html" %} + +{% block title %} + {{ _("Title of page Rai HS") }} +{% endblock %} + +{% block page_content %} +

{{_("List of academic programs") }}

+
+ +
+ +

Institute / School's Abbreviation {{ nickName }}

+ +
+ +
    + {% for record in List %} +
  1. + {{record[0]}} +
  2. + {% endfor %} +
+
+ +{% endblock %}