buda-wtmw-cooperation
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

padCreate.html
text/html

Download raw (491 bytes)

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

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

{% block content %}
  <h1>{{title}}</h1>

  <form action="/etherpad/create/{{ pk }}/" 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 %}