| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {% extends 'web/f_base.html' %}
- {% block middle %}
- <section id="content">
- <div class="container">
- <div class="row">
- <h2 style="color:#00561F;">教职人员 (Teachers) </h2>
- {% for row in teacherlist %}
- <div class="col-md-3 text-center">
- <div class="box">
- <img src="{{row[7]}}" style="height:200px"/><br>
- <a style="font-weight: bold; font-size: 16px" href="/teacherinfo/{{row[0]}}"
- style="color:#00561F;"> {{ row[1] }} </br>{{ row[2] }} </a></br>
- {{ row[3] }} </br>{{ row[4] }}
- </div>
- </div>
- {% endfor %}
- </div>
- <div class="row">
- <h2 style="color:#00561F;">学生 (Students) </h2>
- {% for row2 in studentlist %}
- <div class="col-md-3 text-center">
- <div class="box">
- <img src="{{row2[6]}}" style="height:200px"/><br>
- <a href="/studentinfo/{{row2[0]}}" style="color:#00561F;"> {{ row2[1] }} </br>{{ row2[2] }} </a></br>
- {% if row2[5]==1 %} 本科生 {%endif%}
- {% if row2[5]==2 %} 硕士生 {%endif%}
- {% if row2[5]==3 %} 博士生 {%endif%}
- </div>
- </div>
- {% endfor %}
- </div>
- </div>
- </section>
- {% endblock %}
|