{% extends "templates/base.html" %} {% from "www/macros/profile.html" import Profile %} {% block title %}{{ _("Community") }}{% endblock %} {% block head_include %} {% endblock %} {% block content %} {{ Profile(member.photo, member.full_name, member.abbr, "large")}} {{member.full_name}} Activity Sketches Courses {% if activity %} {% for message in activity %} {{ message.course }} ({{message.batch}}) {{ Profile(message.profile, message.full_name, message.abbr, "small")}} {{ frappe.utils.md_to_html(message.message) }} {{message.full_name}} {{ frappe.utils.pretty_date(message.creation) }} {% endfor %} {% else %} You have not received any messages yet. {% endif %} Create a New Sketch {% if sketches %} {% for sketch in sketches %} {{ sketch.to_svg() }} {% endfor %} {% endif %} {% if not sketches %} You have not created any sketches. {% endif %} {% if courses %} Your Courses {% for course in courses %} {{ course.name }} {% if course.member_type %} {{ course.member_type }} {% endif %} {{ frappe.utils.md_to_html(course.description) }} Joined {{ frappe.utils.pretty_date(course.joining) }} {% endfor %} {% else %} You are not a member of any course yet. Checkout our Courses. {% endif %} {% endblock %}
You have not received any messages yet.
You have not created any sketches.
Your Courses
You are not a member of any course yet. Checkout our Courses.