Editing Module:Release status 0 You do not have permission to edit this page, for the following reasons: The action you have requested is limited to users in one of the groups: Users, FANDOM Staff, FANDOM Helpers, Wiki Managers, Content Team Members. Please log in to edit this wiki.Joining Fandom Developers Wiki is free, and it only takes a minute.We hope that you sign in, and become a member of the community!Click here to log in or create an account more + You can view and copy the source of this page: -- <nowiki> local p = {} local wdsButton = require('Dev:WDS Button') local data = mw.loadData('Dev:Release status/data') local i18n = require('Dev:I18n').loadMessages('Release status', 'Common') local title = mw.title.getCurrentTitle() function p.status(frame) local tmp = mw.ustring.lower(frame:getParent().args[1] or '') -- local status = data[tmp] and tmp or status local status = tmp if not status or status == '' then status = 'unknown' end local html = wdsButton._badge(i18n:msg(status), status) local cat = data[status] if cat and title.namespace == 0 then html = '[[:Category:' .. cat .. '|' .. html .. ']][[Category:' .. cat .. ']]' end return html end return p Return to Module:Release status. Edit summary Show changes