Difference between revisions of "All Teams Info"

Line 61: Line 61:
 
<h3>Team list</h3>
 
<h3>Team list</h3>
 
<!-- Dropdown list for all teams -->
 
<!-- Dropdown list for all teams -->
<select class="search_input" id="team_list"> </select>
+
<select class="search_input" id="team_list">  
 +
 +
</select>
 
 
 
</div>
 
</div>
Line 222: Line 224:
 
];
 
];
  
//generate team and country list
+
//generate team and country list - once it is done, it calls the function to enable the search button
 
setup_teams_and_countries_list(all_teams_info);
 
setup_teams_and_countries_list(all_teams_info);
 
 
 
+
 
//Place all the team information in the general printing div
 
//Place all the team information in the general printing div
 
for( x=0; x< all_teams_info.length; x++) {
 
for( x=0; x< all_teams_info.length; x++) {
Line 241: Line 243:
 
}
 
}
 
}
 
}
 
 
 
 +
 +
$( "#team_list" ).click(function() {
 +
  var z = $('#team_list').val()
 +
 +
print_team(z, all_teams_info);
 +
});
 +
 
 
 
//if a search is requested
 
//if a search is requested
Line 292: Line 300:
 
 
 
 
+
//this is the main search and filter function
 +
//searches by track, location,
 
function search_request(all_teams_info){
 
function search_request(all_teams_info){
 
 
Line 362: Line 371:
 
}
 
}
  
 +
 +
function print_team(team_name, all_teams_info){
 +
 +
var temp_clean_name;
 +
 +
for (x=0; x< all_teams_info.length; x++){
 +
 +
temp_clean_name = all_teams_info[x].team_name;
 +
 +
if(team_name == temp_clean_name) {
 +
 +
$("#filtered_results").append("<div class='column full_size general_p'> <h2>" + all_teams_info[x].team_name +
 +
  "</h2> <p><b>Location:</b>" +all_teams_info[x].location+", "+all_teams_info[x].institution +
 +
  "<br><b>Section:</b>"+all_teams_info[x].section+
 +
  "<br><b>Track:</b>"+all_teams_info[x].track+
 +
  "</p><p><a href='"+all_teams_info[x].wiki_link+"'>"+all_teams_info[x].project_title+
 +
  "</a></p><p>"+all_teams_info[x].abstract+"</p></div>");
 +
 +
}
 +
}
 +
}
 
 
 
 

Revision as of 17:14, 5 September 2019

Loading...

Information on all teams

This page contains information and links to all the 2019 teams. If you would like to search for a specific team or filter by categories you can do so by using the search tool below.

Search and filter tool

Team list

Country / Territory

Tracks

Section

results will be here:

All teams