Skip to content

Commit

Permalink
Courses / Programs by a school
Browse files Browse the repository at this point in the history
List of program offered by a selected school
  • Loading branch information
hsrai authored Nov 26, 2023
1 parent fa01af4 commit 5d7ee16
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions ORM/coursesByschool.html
Original file line number Diff line number Diff line change
@@ -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 %}
<h3 class="my-account-header">{{_("List of academic programs") }}</h3>
<hr>

<div>

<p>Institute / School's Abbreviation {{ nickName }}</p>

<hr>

<ol>
{% for record in List %}
<li>
<a href=Page?Var1={{ record[0] }}>{{record[0]}}</a>
</li>
{% endfor %}
</ol>
</div>

{% endblock %}

0 comments on commit 5d7ee16

Please sign in to comment.