Browse Source

Still small adjustments

prieto 8 years ago
parent
commit
a33cf7f3eb

+ 1
- 1
lodel/plugins/webui/interface/controllers/base.py View File

@@ -28,7 +28,7 @@ def get_component_html(type='text', params={}):
28 28
     return template_loader.render_to_html(template_file='components/components.html', template_vars=params)
29 29
 
30 30
 def index(request):
31
-    return get_response('listing/collections')
31
+    return get_response('index/index.html')
32 32
 
33 33
 
34 34
 def not_found(request):

+ 1
- 1
lodel/plugins/webui/templates/index/index.html View File

@@ -2,6 +2,6 @@
2 2
 {% block title %}Lodel 2 - DASHBOARD{% endblock %}
3 3
 {% block content %}
4 4
 <ul>
5
-    <li><a href="list_classes">Tous les types</a></li>
5
+    <li><a href="collections">Collections</a></li>
6 6
 </ul>
7 7
 {% endblock %}

Loading…
Cancel
Save