refactor: renamed app to school

This commit is contained in:
Jannat Patel
2021-10-11 20:31:27 +05:30
parent 13022e0bcc
commit d07dbcc50a
466 changed files with 2497 additions and 146 deletions

View File

@@ -0,0 +1,12 @@
{% for batch in batches %}
<h3> {{ batch }}</h3>
<div>
{% for message in batches[batch] %}
<div style="border: 1px solid #DBDBDB;padding: 10px; margin: 10px;">
<p> {{ frappe.utils.md_to_html(message.message) }} </p>
<p class="text-right">By {{message.author}}</p>
<div class="small text-muted text-right">{{ frappe.utils.format_datetime(message.creation, "medium") }}</div>
</div>
{% endfor %}
</div>
{% endfor %}