- 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
16 lines
390 B
HTML
16 lines
390 B
HTML
<div class="sketch-preview">
|
|
<div class="sketch-image">
|
|
<a href="/sketches/{{sketch.sketch_id}}">
|
|
{{ sketch.to_svg() }}
|
|
</a>
|
|
</div>
|
|
<div class="sketch-footer">
|
|
<div class="sketch-title">
|
|
<a href="sketches/{{sketch.sketch_id}}">{{sketch.title}}</a>
|
|
</div>
|
|
<div class="sketch-author">
|
|
by {{sketch.get_owner().full_name}}
|
|
</div>
|
|
</div>
|
|
</div>
|