Merge "Panel scaffolding fixes."

This commit is contained in:
Jenkins 2012-05-15 16:47:07 +00:00 committed by Gerrit Code Review
commit db2d1c718e
2 changed files with 2 additions and 2 deletions

View File

@ -10,4 +10,4 @@ class {{ panel_name|title }}(horizon.Panel):
slug = "{{ panel_name|slugify }}"
dashboard.register({{ panel_name|title }})
dashboard.{{ dash_name|title }}.register({{ panel_name|title }})

View File

@ -3,7 +3,7 @@ from horizon import views
class IndexView(views.APIView):
# A very simple class-based view...
template_name = '{{ panel_name }}/index.html'
template_name = '{{ dash_name }}/{{ panel_name }}/index.html'
def get_data(self, request, context, *args, **kwargs):
# Add data to the context here...