FIX_css_domain_list.html

This commit is contained in:
alazo 2018-02-18 19:39:27 +01:00
parent 8e103fea5f
commit 494a7e8872
11 changed files with 188 additions and 11 deletions

View file

@ -1,4 +1,5 @@
{% load i18n static %}<!DOCTYPE html>
<!DOCTYPE html>
{% load i18n static %}
{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
<html lang="{{ LANGUAGE_CODE|default:"fr" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
@ -6,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/base.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/dashboard.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'css/main.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'css/main3.css' %}" />
<script type="text/javascript" src="{% static 'js/tiny_mce/tiny_mce.js' %}"></script>
{% block extrastyle %}{% endblock %}
{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static 'admin/css/rtl.css' %}{% endblock %}" />{% endif %}

View file

@ -10,7 +10,7 @@
{% for p in object.processus_set.all %}
<div class="processus"><h2>Processus: {{ p.url|safe }}</h2></div>
{% for m in p.module_set.all %}
<div class="module">Module: <a href="{% url 'module-detail' c.module.id %}">{{ m }}</a></div>
<div class="module">Module: <a href="{% url 'module-detail' m.id %}">{{ m }}</a></div>
<div class="competence">Compétences visées</div>
{% for c in m.competences.all %}
<div class="competence">{{ c }}</div>

View file

@ -1,5 +1,6 @@
{% extends "./base_site.html" %}
{% load i18n static %}
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}{{ block.super }}{% endblock %}
{% block content %}