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

Snapshots | iceberg

Inside this repository

pad-create.html
text/html

Download raw (645 bytes)

{% extends "base.html" %}
{% load url from future %}
{% load i18n %}

{% block extra_styles %}
        <link rel="stylesheet/less" href="{% url 'css' %}" type="text/css" media="screen">
        <link rel="stylesheet/less" href="{% url 'css-print' %}" type="text/css" media="print">
{% endblock %}

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

{% block content %}
  <form action="{% url 'pad-create' %}" method="post">
        {% csrf_token %}
        Pad name
        {{ form.name }}
        {{ form.group }}
        <input class="submit" type="submit" value="{%trans "Create" %}" />
  </form>
  <legend></legend>
{% endblock %}