我想让我的模板按类别显示我的组作为标题,然后按类别显示该组的所有值。例如,我的表看起来像这样:
['John','Physics']
['Jim','Physics']
['Sam','Biology']
['Sarah','Biology']
我想让模板输出如下内容:
<标题>物理h1> 吉姆生物学山姆莎拉我不确定在我的views .py中放入什么,因为我通常会在SQL ->中这样做->首先按类别分组,然后返回该类别中的所有结果。
我的views .py和模板如何实现这一点?谢谢。
My current views .py:
def department(request):
students = Students.objects.all().order_by('department')
return render(request, 'department.html', {
'students':students,
})
my model.py
class Mentors(models.Model):
name = models.CharField(max_length=100)
degree = models.CharField(max_length=100)
department = models.CharField(max_length=100)
和我的模板:
{% if mentors %}
<div class="row">
{% for mentor in mentors %}
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4">
<h3>{{ mentor.department }}</h3>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4">
<div class="thumbnail">
<img src="{{ mentor.image.url }}" class="img-thumbnail">
<div class="caption">
<h4 class="text-center">{{ mentor.name }}, {{ mentor.degree }}</h4>
<p class="text-center"><small>{{ mentor.department }}</small></p>
</div>
</div>
</div>
{% endfor%}
</div><!-- /.end row -->
{% endif %}
标题>模板(department.html)是列出所有学生的地方。你必须有一些类似的:
{% if students %}
{% for student in students %}
<p>{{ student.NAME_FIELD }}</p>
{{ student.DEPARTMENT_FIELD}}
{% endfor %}
{% else %}
No student are available.
{% endif %}
NAME_FIELD和DEPARTMENT_FIELD是您在模型中声明的字段。py