src/hdalab/templates/renkan_new_confirm.html
changeset 627 3fd558fa38b1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hdalab/templates/renkan_new_confirm.html	Fri Jun 19 18:25:35 2015 +0200
@@ -0,0 +1,33 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% load static %}
+{% load thumbnail %}
+
+{% block title %}{{block.super}} > {% trans 'Marked Renkans list' %}{% endblock %}
+
+{% block css_import %}
+{{block.super}}
+    <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/index.css' %}" />
+    <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/ui-lightness/jquery-ui-1.10.4.min.css' %}" />
+    <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/profile.css' %}" />
+{% endblock %}
+
+{% block js_import %}
+{{block.super}}
+<script src="{% static 'hdalab/lib/jquery-ui-1.10.4.min.js' %}"></script>
+<script src="{% static 'hdalab/js/renkan-search.js' %}"></script>
+{% endblock %}
+
+{% block main_content %}
+    <div class="all-title">
+                {% block main_content_title %}<h1>{% trans 'Confirm renkan creation' %}</h1>{% endblock %}
+            <div id="new_renkan">{% block new_renkan %}
+            <form action="{% url 'renkan_new' %}" method="post">{% csrf_token %}
+            <p>
+            {% trans 'You are now authenticated, you can create your new renkan by clicking on this link:' %}
+            <button id="new-renkan-button" title="Nouveau Renkan" class="renkan-inline-action"><span id="new-renkan">{% trans 'Create new Renkan' %}</span></button>
+            </p>
+            </form>
+            {% endblock %}</div>
+    </div>
+{% endblock %}
\ No newline at end of file