2015-10-15 129 views
1

我試圖在幾個團隊的wiki頁面上放置一個對象列表來標記它們使用的對象。要做到這一點,我爲每個團隊製作了一張專欄,並希望在這些專欄中添加一個複選框供團隊標記。MediaWiki中帶有複選框的表格

這是什麼,我希望做的基本思想:

<html> 
<head> 
<title>Object Usage by Team</title> 
</head> 
<body> 
    <table> 
     <tr> 
      <th>Object</th> 
      <th>Team 1</th> 
      <th>Team 2</th> 
      <th>Team 3</th> 
     </tr> 
     <tr> 
      <td>Object 1</td> 
      <td><input type="checkbox" name="Team" value="Team 1"></td> 
      <td><input type="checkbox" name="Team" value="Team 2"></td> 
      <td><input type="checkbox" name="Team" value="Team 3"></td> 
     </tr> 
    </table> 
</body> 
</html> 

有沒有辦法做複選框細胞的表MediaWiki的和存儲的複選框狀態?

回答

3

您可以使用這些擴展的一個在你的文章中插入表格:

最簡單的方法,如果你很高興與用戶使用wikicode(編輯頁面)檢查框,與Extension:Chklist

語法是因爲這

<chklist> 
[x] Checked item 
[] Unchecked item 
</chklist> 

一樣簡單。如果沒有這些擴展的幫助你,也許創建自己的擴展是要走的路。