Projet

Général

Profil

Télécharger (587 octets) Statistiques
| Branche: | Tag: | Révision:

root / corbo / templates / corbo / base.html @ 78775031

1
{% extends "gadjo/base.html" %}
2
{% load i18n static %}
3
{% block page-title %}{% trans "Corbo" %}{% endblock %}
4

    
5
{% block css %}
6
    <link rel='stylesheet' type='text/css' href='{% static "css/corbo.css" %}' />
7
{% endblock %}
8

    
9
{% block logout-url %}
10
{% url "auth_logout" %}
11
{% endblock %}
12

    
13
{% block site-title %} {% trans "Announces" %}{% endblock %}
14

    
15
{% block more-user-links %}
16
    {{ block.super }}
17
    {% if user.is_authenticated and user.is_superuser %}
18
    <a href="{% url 'manage' %}">{% trans "Management" %}</a>
19
    {% endif %}
20
{% endblock %}
21

    
22
{% block content %}
23
{% endblock %}
(4-4/11)