Gagnefs IF

Gagnefs IF is a Swedish football club located in Gagnef.[1]

Gagnefs IF
Full nameGagnefs Idrottsförening
Nickname(s)GIF
Founded1923
GroundSiljansvallen
Gagnef
Sweden
ChairmanLars Eriksson Brink
LeagueDivision 4 Dalarna

Background

Gagnefs IF currently plays in Division 4 Dalarna which is the sixth tier of Swedish football.[2] They play their home matches at the Siljansvallen in Gagnef.[3]

The club is affiliated to Dalarnas Fotbollförbund.[4] Gagnefs IF have competed in the Svenska Cupen on 9 occasions and have played 14 matches in the competition.[5]

Season to season

In their most successful period Gagnefs IF competed in the following divisions:

Season Level Division Section Position Movements
1980 Tier 5 Division 5 Dalarna Promoted
1981 Tier 4 Division 4 Dalarna 5th
1982 Tier 4 Division 4 Dalarna 6th
1983 Tier 4 Division 4 Dalarna 11th Relegated
1984 Tier 5 Division 5 Dalarna Promoted
1985 Tier 4 Division 4 Dalarna 10th Relegated
1986 Tier 5 Division 5 Dalarna

[6] [7]

In recent seasons Gagnefs IF have competed in the following divisions:

Season Level Division Section Position Movements
2005 Tier 5 Division 4 Dalarna 10th
2006* Tier 6 Division 4 Dalarna 5th
2007 Tier 6 Division 4 Dalarna 3rd
2008 Tier 6 Division 4 Dalarna 11th Relegated
2009 Tier 7 Division 5 Dalarna 2nd
2010 Tier 7 Division 5 Dalarna 1st Promoted
2011 Tier 6 Division 4 Dalarna 8th

* League restructuring in 2006 resulted in a new division being created at Tier 3 and subsequent divisions dropping a level. [8] [9] [10]

Footnotes

gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.
gollark: What? Why is that a config file?! You should be defining routes in your code.
gollark: Yes, that is a bit weird and not ideal.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.