- Added new widget SketchTeaser - Moved get_recent_sketches as static method in LMSSketch - Added `models.py` to make it easy to import Course and Sketch class - Updated the sketches template to use the SketchTeaser widget
6 lines
199 B
Python
6 lines
199 B
Python
"""Handy module to make access to all doctypes from a single place.
|
|
"""
|
|
from .doctype.lms_course.lms_course import LMSCourse as Course
|
|
from .doctype.lms_sketch.lms_sketch import LMSSketch as Sketch
|
|
|