add default div for logo (#9953)

This commit is contained in:
Josue Kouka 2016-02-12 16:21:49 +01:00
parent 51eeb1fccd
commit 441a6c4c54
2 changed files with 2 additions and 3 deletions

2
README
View File

@ -178,7 +178,7 @@ About Statics
* css related to the panel, must be name *mandaye.css* and located in tenants/<my_tenant>/static/css/mandaye.css
#Association
* css and js related to the association page must be named respectively *associate.css* and *associate.js* and located in tenants/<my_tenant>/static/{css.js}/associate.{css,js}
* css, js and image (logo) related to the association page must be named respectively *associate.css* and *associate.js* and located in tenants/<my_tenant>/static/{css.js,images}/associate.{css,js,png}
N.B:

View File

@ -1,13 +1,12 @@
{% load i18n gadjo staticfiles %}
<html>
<head>
<script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
<link rel="stylesheet" href="{% static 'css/associate.css' %}" type="text/css"/>
<script src="{% static 'js/associate.js' %}" type="text/javascript"></script>
</head>
<body>
<div id="main-div">
<h1>{% trans 'Associate your account' %}</h1>
<div id='div-logo'><img id='logo' src="{% static 'images/associate.png' alt='associate.png' %}" /></div>
{% if messages %}
<ul class="messages">
{%for message in messages%}