f_peoplelist.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {% extends 'web/f_base.html' %}
  2. {% block middle %}
  3. <section id="content">
  4. <div class="container">
  5. <div class="row">
  6. <h2 style="color:#00561F;">教职人员 (Teachers) </h2>
  7. {% for row in teacherlist %}
  8. <div class="col-md-3 text-center">
  9. <div class="box">
  10. <img src="{{row[7]}}" style="height:200px"/><br>
  11. <a style="font-weight: bold; font-size: 16px" href="/teacherinfo/{{row[0]}}"
  12. style="color:#00561F;"> {{ row[1] }} </br>{{ row[2] }} </a></br>
  13. {{ row[3] }} </br>{{ row[4] }}
  14. </div>
  15. </div>
  16. {% endfor %}
  17. </div>
  18. <div class="row">
  19. <h2 style="color:#00561F;">学生 (Students) </h2>
  20. {% for row2 in studentlist %}
  21. <div class="col-md-3 text-center">
  22. <div class="box">
  23. <img src="{{row2[6]}}" style="height:200px"/><br>
  24. <a href="/studentinfo/{{row2[0]}}" style="color:#00561F;"> {{ row2[1] }} </br>{{ row2[2] }} </a></br>
  25. {% if row2[5]==1 %} 本科生 {%endif%}
  26. {% if row2[5]==2 %} 硕士生 {%endif%}
  27. {% if row2[5]==3 %} 博士生 {%endif%}
  28. </div>
  29. </div>
  30. {% endfor %}
  31. </div>
  32. </div>
  33. </section>
  34. {% endblock %}