Piki is a minimal wiki
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

set_perms.html 479B

12345678910111213141516171819202122
  1. {% extends "admin/base_site.html" %}
  2. {% block content %}
  3. <form action="" method="post">
  4. {% csrf_token %}
  5. <p>
  6. Choose a group for the following pages:
  7. </p>
  8. <ul>
  9. {% for page in pages %}
  10. <li>
  11. {{ page.rel_path }}
  12. </li>
  13. <input type="hidden" name="_selected_action" value="{{ page.pk }}" />
  14. {% endfor %}
  15. </ul>
  16. {{ form.as_p }}
  17. <input type="hidden" name="action" value="set_perms" />
  18. <input type="submit" name="apply" value="Set"/>
  19. </form>
  20. {% endblock %}