Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #35: Add majors after brothers' names in resume list #37

Merged
merged 1 commit into from Mar 7, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 10 additions & 2 deletions info/templates/resume_list.html
Expand Up @@ -44,8 +44,16 @@ <h1 class="page-header">Resumes</h1>
<div class="row">

{% for brother in brothers %}

<a href='{{ brother.resume }}'>{{ brother.lastName }}, {{ brother.firstName }} {{ brother.middleName }}</a> <br />
<div class='col-md-2'>
<a href='{{ brother.resume }}'>{{ brother.lastName }}, {{ brother.firstName }} {{ brother.middleName }}</a>
</div>
{% for major in brother.majors.all %}
<div class='col-md-2'>
{{ major }}
</div>
{% endfor %}

<br />

{% endfor %}

Expand Down