daisycloud-core/code/horizon/horizon/conf/panel_template/panel.py.tmpl

12 lines
358 B
Cheetah

from django.utils.translation import ugettext_lazy as _
import horizon
{% if dashboard %}from {{ dash_path }} import dashboard{% endif %}
class {{ panel_name|title }}(horizon.Panel):
name = _("{{ panel_name|title }}")
slug = "{{ panel_name|slugify }}"
{% if dashboard %}
dashboard.{{ dash_name|title }}.register({{ panel_name|title }}){% endif %}