{% 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 %}