src/hdalab/templates/renkan_new_confirm.html
changeset 627 3fd558fa38b1
equal deleted inserted replaced
626:af0a09405398 627:3fd558fa38b1
       
     1 {% extends "base.html" %}
       
     2 {% load i18n %}
       
     3 {% load static %}
       
     4 {% load thumbnail %}
       
     5 
       
     6 {% block title %}{{block.super}} > {% trans 'Marked Renkans list' %}{% endblock %}
       
     7 
       
     8 {% block css_import %}
       
     9 {{block.super}}
       
    10     <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/index.css' %}" />
       
    11     <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/ui-lightness/jquery-ui-1.10.4.min.css' %}" />
       
    12     <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/profile.css' %}" />
       
    13 {% endblock %}
       
    14 
       
    15 {% block js_import %}
       
    16 {{block.super}}
       
    17 <script src="{% static 'hdalab/lib/jquery-ui-1.10.4.min.js' %}"></script>
       
    18 <script src="{% static 'hdalab/js/renkan-search.js' %}"></script>
       
    19 {% endblock %}
       
    20 
       
    21 {% block main_content %}
       
    22     <div class="all-title">
       
    23                 {% block main_content_title %}<h1>{% trans 'Confirm renkan creation' %}</h1>{% endblock %}
       
    24             <div id="new_renkan">{% block new_renkan %}
       
    25             <form action="{% url 'renkan_new' %}" method="post">{% csrf_token %}
       
    26             <p>
       
    27             {% trans 'You are now authenticated, you can create your new renkan by clicking on this link:' %}
       
    28             <button id="new-renkan-button" title="Nouveau Renkan" class="renkan-inline-action"><span id="new-renkan">{% trans 'Create new Renkan' %}</span></button>
       
    29             </p>
       
    30             </form>
       
    31             {% endblock %}</div>
       
    32     </div>
       
    33 {% endblock %}