set base.html as an intermediate template (#7394)

This commit is contained in:
Frédéric Péters 2015-06-03 13:31:06 +02:00
parent 62c7e7be33
commit c40735cd8a
2 changed files with 85 additions and 84 deletions

View File

@ -1,84 +1 @@
{% load url from future %}{% load i18n gadjo %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>{% block page-title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/gadjo.css"/>
<link rel="stylesheet" type="text/css" media="all"
href="{% xstatic 'jquery-ui' 'themes/smoothness/jquery-ui.min.css' %}"/>
{% block css %}
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css"/>
{% endblock %}
<script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
<script src="{% xstatic 'jquery-ui' 'jquery-ui.min.js' %}"></script>
<script src="{{ STATIC_URL }}js/gadjo.js"></script>
{% block extrascripts %}
{% endblock %}
</head>
<body>
<div id="top">
<div id="sidepage">
<span id="applabel"> </span>
</div>
{% block user-links %}
<ul class="user-info">
{% if user.is_authenticated %}
<li class="ui-name">{{ user.get_full_name }}</li>
<li class="ui-logout"><a href="{% block logout-url %}index.html{% endblock %}">{% trans "Logout" %}</a></li>
{% endif %}
</ul>
{% endblock %}
</div>
<div id="main">
<div id="header">
<h1>{% block site-title %}{% endblock %}</h1>
</div>
<div id="main-content">
<div id="more-user-links">
{% block more-user-links %}
<a href="{% block homepage-url %}/{% endblock %}" class="icon-home-space">{% block homepage-title %}{% trans "Homepage" %}{% endblock %}</a>
{% endblock %}
</div>
<div id="content">
<div id="appbar">
{% block appbar %}
{% endblock %}
</div>
{% block messages %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
<script>
$(document).ready(function() { $('.messages').delay(5000).fadeOut('slow'); });
</script>
{% endif %}
{% endblock %}
{% block beforecontent %}
{% endblock %}
{% block content %}
{% endblock %}
<br style="clear: both;"/>
</div> <!-- #content -->
</div> <!-- #main-content -->
</div> <!-- #main -->
<div id="footer">
{% block footer %}
Copyright &copy; 2014 Entr'ouvert
{% endblock %}
</div>
{% block page-end %}
{% endblock %}
</body>
</html>
{% extends 'gadjo/root.html' %}

View File

@ -0,0 +1,84 @@
{% load url from future %}{% load i18n gadjo %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>{% block page-title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/gadjo.css"/>
<link rel="stylesheet" type="text/css" media="all"
href="{% xstatic 'jquery-ui' 'themes/smoothness/jquery-ui.min.css' %}"/>
{% block css %}
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css"/>
{% endblock %}
<script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
<script src="{% xstatic 'jquery-ui' 'jquery-ui.min.js' %}"></script>
<script src="{{ STATIC_URL }}js/gadjo.js"></script>
{% block extrascripts %}
{% endblock %}
</head>
<body>
<div id="top">
<div id="sidepage">
<span id="applabel"> </span>
</div>
{% block user-links %}
<ul class="user-info">
{% if user.is_authenticated %}
<li class="ui-name">{{ user.get_full_name }}</li>
<li class="ui-logout"><a href="{% block logout-url %}index.html{% endblock %}">{% trans "Logout" %}</a></li>
{% endif %}
</ul>
{% endblock %}
</div>
<div id="main">
<div id="header">
<h1>{% block site-title %}{% endblock %}</h1>
</div>
<div id="main-content">
<div id="more-user-links">
{% block more-user-links %}
<a href="{% block homepage-url %}/{% endblock %}" class="icon-home-space">{% block homepage-title %}{% trans "Homepage" %}{% endblock %}</a>
{% endblock %}
</div>
<div id="content">
<div id="appbar">
{% block appbar %}
{% endblock %}
</div>
{% block messages %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
<script>
$(document).ready(function() { $('.messages').delay(5000).fadeOut('slow'); });
</script>
{% endif %}
{% endblock %}
{% block beforecontent %}
{% endblock %}
{% block content %}
{% endblock %}
<br style="clear: both;"/>
</div> <!-- #content -->
</div> <!-- #main-content -->
</div> <!-- #main -->
<div id="footer">
{% block footer %}
Copyright &copy; 2014 Entr'ouvert
{% endblock %}
</div>
{% block page-end %}
{% endblock %}
</body>
</html>