{% extends 'base.html' %} {% block titile %} 公开课列表页 | mtianyan慕课小站 {% endblock %} {% load staticfiles %} {% block custom_bread %}
{% endblock %} {% block content %}
{% for course in all_course.object_list %}

{{ course.name }}

时长:{{ course.learn_times }} 学习人数:{{ course.students }}  
来自{{ course.course_org.name }} {{ course.fav_nums }}
{% endfor %}
    {% if all_course.has_previous %}
  • 上一页
  • {% endif %} {% for page in all_course.pages %} {% if page %} {% ifequal page all_course.number %}
  • {{ page }}
  • {% else %}
  • {{ page }}
  • {% endifequal %} {% else %}
  • ...
  • {% endif %} {% endfor %} {% if all_course.has_next %}
  • 下一页
  • {% endif %}
热门课程推荐
{% for hot_course in hot_courses %}

{{ hot_course.name }}

难度:{{ hot_course.get_degree_display }}
{% endfor %}
{% endblock %}