|
293
|
1 |
{% extends "base.html" %} |
|
|
2 |
{% load i18n %} |
|
|
3 |
{% load static %} |
|
|
4 |
|
|
|
5 |
{% block title %}{{block.super}} > transProfil utilisateur{% endblock %} |
|
|
6 |
|
|
|
7 |
{% block css_import %} |
|
|
8 |
{{block.super}} |
|
|
9 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/index.css' %}" /> |
|
|
10 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/ui-lightness/jquery-ui-1.10.4.min.css' %}" /> |
|
|
11 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/profile.css' %}" /> |
|
|
12 |
{% endblock %} |
|
|
13 |
|
|
|
14 |
{% block main_content %} |
|
|
15 |
<h2>Votre profil</h2> |
|
|
16 |
<p>Vos renkans : </p> |
|
|
17 |
<table> |
|
|
18 |
<tr class="border_bottom"><th>Nom</th><th>Date de modification</th><th>Preview</th><th>Actions</th></tr> |
|
|
19 |
<tr class="border_bottom"> |
|
|
20 |
<td>dlfksldkjf lskdj</td> |
|
|
21 |
<td>sldkfj lsdkjf lksdj fl</td> |
|
|
22 |
<td><img src="http://icons.iconarchive.com/icons/visualpharm/ios7v2/256/Charts-Mind-map-icon.png" width="100px" height="100px" /></td> |
|
|
23 |
<td> |
|
|
24 |
<a title="Edit renkan" href="#" class="actions"><span class="ui-icon ui-icon-pencil renkan-basic-action"></span></a> |
|
|
25 |
<a title="View renkan" href="#" class="actions"><span class="ui-icon ui-icon-eye renkan-basic-action"></span></a> |
|
|
26 |
<a title="Copy renkan" href="#" class="actions"><span class="ui-icon ui-icon-copy renkan-basic-action"></span></a> |
|
|
27 |
<a title="Remove renkan" href="#" class="actions"><span class="ui-icon ui-icon-trash renkan-basic-action"></span></a> |
|
|
28 |
</td> |
|
|
29 |
</tr> |
|
|
30 |
</table> |
|
|
31 |
<p>Gestion du mot de passe : <a href="{% url 'auth_password_change' %}">modification</a></p> |
|
|
32 |
{% endblock %} |