{% extends 'base.html' %} {% block titile %} 机构列表页 | mtianyan慕课小站 {% endblock %} {% load staticfiles %} {% block custom_bread %}
{% endblock %} {% block content %}
{{ org_nums }}
{% for course_org in all_orgs.object_list %}
  • 课程数:{{ course_org.course_nums }}

    学习人数:{{ course_org.students }}

  • {{ course_org.address }}
  • 经典课程: {% for course in course_org.course_set.get_queryset %} {{ course.name }} {% endfor %}
{% endfor %}
    {% if all_orgs.has_previous %}
  • 上一页
  • {% endif %} {% for page in all_orgs.pages %} {% if page %} {% ifequal page all_orgs.number %}
  • {{ page }}
  • {% else %}
  • {{ page }}
  • {% endifequal %} {% else %}
  • ...
  • {% endif %} {% endfor %} {% if all_orgs.has_next %}
  • 下一页
  • {% endif %}
我要学习

{% csrf_token %}
授课机构排名
{% for curent_org in hot_orgs %}
{{ forloop.counter }}

{{ curent_org.name }}

{{ curent_org.address }}

{% endfor %}
{% endblock %} {% block custom_js %} {% endblock %}