Module:Sports table/WL PK: Difference between revisions
Jump to navigation
Jump to search
en>Frietjes (wrapper for 1987 1. divisjon) |
m (1 revision imported) |
(No difference)
|
Latest revision as of 02:13, 18 January 2023
-- Style for football tables local pp = {} local pmod = require('Module:Sports table/WDL OT') function pp.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) Args['show_draw'] = Args['show_draw'] or 'no' Args['showOTwin'] = Args['showOTwin'] or 'no' Args['showOTloss'] = Args['showOTloss'] or 'no' Args['showPKwin'] = Args['showPKwin'] or 'yes' Args['showPKloss'] = Args['showPKloss'] or 'yes' Args['PKwinpoints'] = Args['PKwinpoints'] or 2 Args['PKlosspoints'] = Args['PKlosspoints'] or 1 return pmod.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) end function pp.row(frame,t,Args,p_sub,notes_exist,hth_id_list,full_table,rand_val,team_list,team_code_ii,ii_start,ii_end,ii_fw,bg_col,N_teams,ii,ii_show) Args['show_draw'] = Args['show_draw'] or 'no' Args['showOTwin'] = Args['showOTwin'] or 'no' Args['showOTloss'] = Args['showOTloss'] or 'no' Args['showPKwin'] = Args['showPKwin'] or 'yes' Args['showPKloss'] = Args['showPKloss'] or 'yes' Args['PKwinpoints'] = Args['PKwinpoints'] or 2 Args['PKlosspoints'] = Args['PKlosspoints'] or 1 return pmod.row(frame,t,Args,p_sub,notes_exist,hth_id_list,full_table,rand_val,team_list,team_code_ii,ii_start,ii_end,ii_fw,bg_col,N_teams,ii,ii_show) end function pp.status(Args) Args['show_draw'] = Args['show_draw'] or 'no' Args['showOTwin'] = Args['showOTwin'] or 'no' Args['showOTloss'] = Args['showOTloss'] or 'no' Args['showPKwin'] = Args['showPKwin'] or 'yes' Args['showPKloss'] = Args['showPKloss'] or 'yes' Args['PKwinpoints'] = Args['PKwinpoints'] or 2 Args['PKlosspoints'] = Args['PKlosspoints'] or 1 return pmod.status(Args) end return pp