ethertoff
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

groupCreate.html
text/html

Download raw (490 bytes)

{% extends "etherpad-lite/base.html" %}
{% load url from future %}
{% load i18n %}

{% block title %}{{title}}{% endblock %}

{% block content %}
  <h1>{{title}}</h1>
  {{message}}
  <form action="/group/create/" method="post">
    {% csrf_token %}
    <table>
      <tr>
        <td>{{ form.name.label_tag }}</td>
        <td>{{ form.name }}</td>
      </tr>
    </table>
    {{ form.group }}
    <input class="submit" type="submit" value="{%trans "Create" %}" />
  </form>

{% endblock %}