Add institution detail view with stats
This commit is contained in:
parent
f6ff281d4b
commit
4b6a8d50c3
8 changed files with 147 additions and 3 deletions
|
|
@ -2,7 +2,13 @@
|
|||
{% load i18n admin_static %}
|
||||
{% load url from future %}
|
||||
|
||||
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />{% endblock %}
|
||||
{% block extrastyle %}{{ block.super }}
|
||||
<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}">
|
||||
<style>
|
||||
ul#main { margin: 1em; }
|
||||
ul#main li { font-size: 14px; }
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block coltype %}colMS{% endblock %}
|
||||
|
||||
|
|
@ -13,6 +19,10 @@
|
|||
{% block content %}
|
||||
<div id="content-main">
|
||||
|
||||
<ul id="main">
|
||||
<li><b><a href="{% url 'corporations' %}">Liste des institutions</a></b></li>
|
||||
</ul>
|
||||
|
||||
{% if app_list %}
|
||||
{% for app in app_list %}
|
||||
<div class="module">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue