You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
744 B
33 lines
744 B
{% extends 'base/base.html' %}
|
|
{% load static %}
|
|
{% load thumbnail %}
|
|
|
|
{% block content %}
|
|
|
|
<h3 class="ui header">我的收藏</h3>
|
|
<div class="ui unstackable items">
|
|
|
|
{% for item in video_list %}
|
|
<div class="item">
|
|
<div class="ui tiny image">
|
|
{% thumbnail item.cover "300x200" crop="center" as im %}
|
|
<img class="ui image" src="{{ im.url }}">
|
|
{% empty %}
|
|
{% endthumbnail %}
|
|
</div>
|
|
<div class="middle aligned content">
|
|
<a class="header" href="{% url 'video:detail' item.pk %}">{{ item.title }}</a>
|
|
</div>
|
|
</div>
|
|
{% empty %}
|
|
<h3>暂无数据</h3>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% include "base/page_nav.html" %}
|
|
|
|
{% endblock content %}
|
|
|
|
|