Commit ec495097 by François C.

Add permanent message below memberspace connection fields

parent 38f3ee82
Pipeline #2371 failed with stage
in 1 minute 21 seconds
...@@ -29,7 +29,8 @@ def index(request, exception=None): ...@@ -29,7 +29,8 @@ def index(request, exception=None):
context = { context = {
'title': 'Espace Membre', 'title': 'Espace Membre',
'COMPANY_LOGO': getattr(settings, 'COMPANY_LOGO', None), 'COMPANY_LOGO': getattr(settings, 'COMPANY_LOGO', None),
'block_actions_for_attached_people' : getattr(settings, 'BLOCK_ACTIONS_FOR_ATTACHED_PEOPLE', True) 'block_actions_for_attached_people' : getattr(settings, 'BLOCK_ACTIONS_FOR_ATTACHED_PEOPLE', True),
'permanent_message': getattr(settings, 'PERMANENT_MESSAGE_BELOW_CONNECTION_FIELDS', None),
} }
template = loader.get_template('members_space/index.html') template = loader.get_template('members_space/index.html')
......
...@@ -442,6 +442,10 @@ ...@@ -442,6 +442,10 @@
True by default True by default
- PERMANENT_MESSAGE_BELOW_CONNECTION_FIELDS = "Si vous avez des difficultés à vous connecter, ...."
Default is None
### BDM Admin ### BDM Admin
- BDM_SHOW_FTOP_BUTTON = True (by default) - BDM_SHOW_FTOP_BUTTON = True (by default)
......
...@@ -24,6 +24,11 @@ ...@@ -24,6 +24,11 @@
<p><button type="submit">Connexion</button></p> <p><button type="submit">Connexion</button></p>
</form> </form>
<p style="color:red;">{{msg}}</p> <p style="color:red;">{{msg}}</p>
{% if permanent_message %}
<div id="permanent_message">
{{permanent_message}}
</div>
{% endif %}
<!--<p><a href="oubli_pass">Mot de passe oublié</a></p>--> <!--<p><a href="oubli_pass">Mot de passe oublié</a></p>-->
<script> <script>
try { try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment