forked from LuaAndC/LuaAndC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLuaAndCparticipants.lua
47 lines (44 loc) · 1.95 KB
/
LuaAndCparticipants.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
-- http://kodomo.fbb.msu.ru/wiki/Main/LuaAndC/Participants
local participants = {
{'Александра Галицина', 'agalicina', 'agalitsyna', },
{'Анна Колупаева', 'kolupaeva', 'AnyaKol', },
{'Александра Бойко', 'boyko.s', 'boykos', },
{'Андрей Сигорских', 'crescent8547', 'CarolusRex8547', },
{'Иван Русинов', 'is_rusinov', 'isrusin', },
{'Игорь Поляков', 'ranhummer', 'RanHum', },
{'Борис Нагаев', 'bnagaev', 'starius',
'https://github.com/LuaAndC/LuaAndC', 'LuaAndC'},
{'Татьяна Шугаева', 'talianash', 'Talianash', },
{'Дарья Диброва', 'udavdasha', 'udavdasha', },
{'Павел Долгов', '', 'zer0main', },
{'Роман Кудрин', 'explover', 'explover', },
{'Анастасия Князева', 'nknjasewa', 'nknjasewa', },
{'Иван Ильницкий', 'ilnitsky', 'ilnitsky', },
{'Наталия Кашко', 'nataliya.kashko', 'natilika', },
{'Дмитрий Пензар', 'darkvampirewolf', 'dmitrypenzar1996'},
}
local unpack = unpack or table.unpack
print("||Имя, тесты||Github||Учебный проект||")
for _, participant in ipairs(participants) do
local name, kodomo, github, projecturl, projectname =
unpack(participant)
local kodomolink, quizlink
if kodomo then
kodomolink = ('[[http://kodomo.fbb.msu.ru/~%s|%s]]')
:format(kodomo, name)
quizlink = ('[[http://kodomoquiz.tk/admin/user/%s|#]]')
:format(kodomo)
else
kodomolink = name
quizlink = ''
end
local githublink = ('[[https://github.com/%s|%s]]')
:format(github, github)
local projectlink = ''
if projecturl and projectname then
projectlink = ('[[%s|%s]]')
:format(projecturl, projectname)
end
print(("||%s %s||%s||%s||"):format(kodomolink,
quizlink, githublink, projectlink))
end