Jump to content

Module:DartsRankings/data/PDCNB Rankings

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by DLManiac (talk | contribs) at 19:30, 11 September 2021 (Created page with 'local data = {} -- information about other templates used by module data.templates = { flagged_team_link = "PDCNB Rankings" } -- general information about ranking and website being cited data.source = { url = "https://pdc-nordic.tv/ranking-2021/#", title = "PDC Nordic & Baltic 2021 Order of Merit", website = "PDCNB" } -- table titles data.labels = { title = "PDCNB Rankings" } -- date of latest update and previous one for movement data.updated =...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local data = {}

-- information about other templates used by module
data.templates = { flagged_team_link = "PDCNB Rankings" }

-- general information about ranking and website being cited
data.source = {
    url = "https://pdc-nordic.tv/ranking-2021/#", 
	title = "PDC Nordic & Baltic 2021 Order of Merit",
	website = "PDCNB"
}

-- table titles
data.labels = { title = "PDCNB Rankings" }


-- date of latest update and previous one for movement
data.updated  = { 	day = 7, 	month = 'September', year =2021 }
data.previous = { 	day = 7, 	month = 'September', year =2021 }

-- see "Generating code" section on doc page for how to update the rankings
-- { "Name" , rank , "points" },
data.rankings = {

}

data.rankingsold = {

}

local datalib = require('Module:DartsRankings/data/PDCNB Players');
data.alias = datalib.library

return data