groups.html 649 B

12345678910111213141516171819202122232425
  1. {% extends "base.html" %}
  2. {% block main %}
  3. {% for group in groups %}
  4. {{ group['name'] }} (<code>id: {{ group['id'] }}, API key: {{ group['api_key'] }}</code>)
  5. <br>
  6. {% end %}
  7. <br>
  8. <form method="post" action="/groups/create">
  9. create a group:
  10. <input type="text" name="name" placeholder="name">
  11. <input type="submit">
  12. </form>
  13. <br>
  14. <form method="post" action="/groups/invite">
  15. invite a user:
  16. <input type="text" name="email" placeholder="email">
  17. <select name="group">
  18. {% for group in groups %}
  19. <option value="{{ group['id'] }}">{{ group['name'] }}</option>
  20. {% end %}
  21. </select>
  22. <input type="submit">
  23. </form>
  24. {% end %}