jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
430 B

- const blockedCountries = new Set(board.settings.blockedCountries);
select(name='countries' size='10' multiple)
optgroup(label=__('Currently blocked'))
each code in board.settings.blockedCountries
option(value=code selected=true) #{countryNamesMap[code]} (#{code})
optgroup(label=__('Not blocked'))
each code in countryCodes.filter(c => !blockedCountries.has(c))
option(value=code) #{countryNamesMap[code]} (#{code})