<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>templates/college/alums_in_coaching.html</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -16,6 +16,7 @@ urlpatterns = patterns('fumblerooski.college.views',
      url(r'^teams/undefeated/(?P&lt;season&gt;\d+)/$', 'undefeated_teams'),
      url(r'^teams/(?P&lt;team&gt;[-a-z]+)/$', 'team_detail'),
      url(r'^teams/(?P&lt;team&gt;[-a-z]+)/coaching-history/$', 'team_coaching_history', name=&quot;tch&quot;),
+     url(r'^teams/(?P&lt;team&gt;[-a-z]+)/alums-in-coaching/$', 'alums_in_coaching', name=&quot;alum_coach&quot;),
      url(r'^teams/(?P&lt;team&gt;[-a-z]+)/bowl-games/$', 'team_bowl_games'),
      url(r'^teams/(?P&lt;team&gt;[-a-z]+)/offense/$', 'team_offense'),
      url(r'^teams/(?P&lt;team&gt;[-a-z]+)/offense/rushing/$', 'team_offense_rushing'),</diff>
      <filename>college/urls.py</filename>
    </modified>
    <modified>
      <diff>@@ -210,6 +210,11 @@ def team_coaching_history(request, team):
         coach.years = coach.seasons_at_school(t)[0]
     return render_to_response('college/team_coaching_history.html', {'team': t, 'coaches': coaches})
 
+def alums_in_coaching(request, team):
+    t = get_object_or_404(College, slug=team)
+    coaches = Coach.objects.filter(college=t)
+    return render_to_response('college/alums_in_coaching.html', {'team': t, 'coaches': coaches})
+
 def team_first_downs_category(request, team, category):
     t = get_object_or_404(College, slug=team)
     cat = category.title()</diff>
      <filename>college/views.py</filename>
    </modified>
    <modified>
      <diff>@@ -31,5 +31,6 @@ Coach: &lt;a href=&quot;{{ coach.coach.get_absolute_url }}&quot;&gt;{{ coach.coach.full_name }}&lt;
 
 
 &lt;h3&gt;&lt;a href=&quot;{% url tch team.slug %}&quot;&gt;Coaching History&lt;/a&gt;&lt;/h3&gt;
+&lt;h3&gt;&lt;a href=&quot;{% url alum_coach team.slug %}&quot;&gt;Alumni in Coaching&lt;/a&gt;&lt;/h3&gt;
 
 {% endblock %}</diff>
      <filename>templates/college/team_detail.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0fa8cd14bc27c6e2b3e2fe79e800a32c46baa5a1</id>
    </parent>
  </parents>
  <author>
    <name>Derek Willis</name>
    <email>dwillis@new-host.home</email>
  </author>
  <url>http://github.com/dwillis/fumblerooski/commit/e8541b94d1c727079465f98661caa47c7cc2a229</url>
  <id>e8541b94d1c727079465f98661caa47c7cc2a229</id>
  <committed-date>2009-11-05T10:12:07-08:00</committed-date>
  <authored-date>2009-11-05T10:12:07-08:00</authored-date>
  <message>added alums in coaching</message>
  <tree>38e62a458e5e9d7bfe7df5434301e9332c6b1778</tree>
  <committer>
    <name>Derek Willis</name>
    <email>dwillis@new-host.home</email>
  </committer>
</commit>
