|
@@ -189,3 +189,16 @@ Example:
|
|
|
{% extends "base.html" %}
|
|
|
{% block extra_css %}<link rel="stylesheet" href="{% static "myapp/css/local.css" %}">{% endblock %}
|
|
|
{% block extra_js %}<script>alert("So extra !");</script>{% endblock %}
|
|
|
+
|
|
|
+
|
|
|
+Menu items
|
|
|
+----------
|
|
|
+
|
|
|
+If you want to add your own links to the main coin menu (left sidebar); edit
|
|
|
+the *coin/templates/menu_items.html* adding a conditional like that :
|
|
|
+
|
|
|
+ {% if 'my_app' in INSTALLED_APPS %}
|
|
|
+ <li></li>
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+… That way, your links will display only if your app is enabled.
|