src/hdalab/templates/renkan_new_confirm.html
author ymh <ymh.work@gmail.com>
Fri, 24 Jan 2020 16:49:22 +0100
branchdocumentation
changeset 701 bf0820deea40
parent 627 3fd558fa38b1
permissions -rw-r--r--
Added tag V03.02.02 for changeset fe94d8572c18

{% extends "base.html" %}
{% load i18n %}
{% load static %}
{% load thumbnail %}

{% block title %}{{block.super}} &gt; {% 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 %}