mirror of
https://github.com/nanoy42/coope
synced 2024-11-25 22:22:27 +00:00
Add minors features
This commit is contained in:
parent
c831299090
commit
1cb2561b4c
2 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
from django import template
|
from django import template
|
||||||
|
import random
|
||||||
from preferences.models import GeneralPreferences
|
from preferences.models import GeneralPreferences
|
||||||
|
|
||||||
register = template.Library()
|
register = template.Library()
|
||||||
|
@ -37,4 +37,5 @@ def grocer():
|
||||||
@register.simple_tag
|
@register.simple_tag
|
||||||
def global_message():
|
def global_message():
|
||||||
gp,_ = GeneralPreferences.objects.get_or_create(pk=1)
|
gp,_ = GeneralPreferences.objects.get_or_create(pk=1)
|
||||||
return gp.global_message
|
messages = gp.global_message.split("\n")
|
||||||
|
return random.choice(messages)
|
||||||
|
|
|
@ -39,5 +39,5 @@
|
||||||
<li><a href="https://www.facebook.com/coopesmetz/" class="icon fa-facebook alt"><span class="label">Facebook</span></a></li>
|
<li><a href="https://www.facebook.com/coopesmetz/" class="icon fa-facebook alt"><span class="label">Facebook</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<p class="copyright">coopeV3 © 2016 - 2018. Remi Delannoy - Guillaume Goessel - Yoann Pietri. Design: <a href="https://html5up.net">HTML5 UP</a>.</p>
|
<p class="copyright">coopeV3 v0.9 (release stable) © 2018 Yoann Pietri.</p>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue