Files
lms/community/www/profiles/profile.py
2021-04-15 09:33:17 +05:30

19 lines
657 B
Python

import frappe
from ...lms.doctype.lms_sketch.lms_sketch import get_recent_sketches
def get_context(context):
context.no_cache = 1
context.username = frappe.form_dict["username"]
context.member = get_member(context.username)
if not context.member:
context.template = "www/404.html"
else:
context.abbr = "".join([s[0] for s in context.member.full_name.split()])
context.sketches = list(filter(lambda x: x.owner == context.member.email, get_recent_sketches()))
def get_member(username):
try:
frappe.get_doc("Community Member", {"username":username})
except frappe.DoesNotExistError:
return