Add a generic help template - factor out the template so that you only need to override the generic rather than 8 separate templates.

This commit is contained in:
Emlyn Clay
2014-11-07 10:51:02 +00:00
parent c652b37f35
commit 196474dbed

View File

@@ -0,0 +1,6 @@
{% load i18n %}
<div class="block notice">
<h4>{% block help_title %}{% endblock %}</h4>
<div>{% block help_text %}{% endblock %}</div>
</div>