您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sitemap_permission.html 420 B

12345678
  1. <tr class="sitemap-permission" data-profile="{{ profile.name }}">
  2. <td>
  3. {% include "templates/includes/profile_display.html" %}
  4. </td>
  5. <td><input type="checkbox" data-perm="read" {% if profile.read %}checked{% endif %}></td>
  6. <td><input type="checkbox" data-perm="write" {% if profile.write %}checked{% endif %}></td>
  7. <td><input type="checkbox" data-perm="admin" {% if profile.admin %}checked{% endif %}></td>
  8. </tr>