mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-25 15:31:39 +00:00
The rest of 1-21 changes. Mostly visual flow between tournament school and wrestlers
This commit is contained in:
@@ -1,7 +1,25 @@
|
||||
<h1>CCHS Wrestling</h1>
|
||||
<h3>1st Annual Comet Classic</h3>
|
||||
<p>Central Crossing High School</p>
|
||||
<p>4500 Big Run South Rd, Grove City, OH</p>
|
||||
<h1>Pick A Tournament</h1>
|
||||
<%= link_to 'New Tournament', new_tournament_path, :class=>"btn" %>
|
||||
</br>
|
||||
</br>
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<% @tournaments.each do |tournament| %>
|
||||
<tr>
|
||||
<td><%= tournament.name %></td>
|
||||
<td><%= link_to 'Show', tournament, :class=>"btn" %><%= link_to 'Edit', edit_tournament_path(tournament), :class=>"btn" %><%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Central+Crossing+High+School,+Big+Run+South+Road,+Grove+City,+OH&aq=0&oq=central+crossing&sll=40.365277,-82.669252&sspn=4.888292,10.821533&t=h&ie=UTF8&hq=Central+Crossing+High+School,+Big+Run+South+Road,+Grove+City,+OH&ll=39.89637,-83.113117&spn=0.019228,0.042272&z=14&iwloc=A&cid=10210402163347601240&output=embed"></iframe><br /><small><a href="https://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=Central+Crossing+High+School,+Big+Run+South+Road,+Grove+City,+OH&aq=0&oq=central+crossing&sll=40.365277,-82.669252&sspn=4.888292,10.821533&t=h&ie=UTF8&hq=Central+Crossing+High+School,+Big+Run+South+Road,+Grove+City,+OH&ll=39.89637,-83.113117&spn=0.019228,0.042272&z=14&iwloc=A&cid=10210402163347601240" style="color:#0000FF;text-align:left">View Larger Map</a></small>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user