| 12345678910111213141516171819202122232425 |
- {% extends "base.html" %}
- {% block main %}
- {% for group in groups %}
- {{ group['name'] }} (<code>id: {{ group['id'] }}, API key: {{ group['api_key'] }}</code>)
- <br>
- {% end %}
- <br>
- <form method="post" action="/groups/create">
- create a group:
- <input type="text" name="name" placeholder="name">
- <input type="submit">
- </form>
- <br>
- <form method="post" action="/groups/invite">
- invite a user:
- <input type="text" name="email" placeholder="email">
- <select name="group">
- {% for group in groups %}
- <option value="{{ group['id'] }}">{{ group['name'] }}</option>
- {% end %}
- </select>
- <input type="submit">
- </form>
- {% end %}
|