Piki is a minimal wiki
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.

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 %}