
This changes are the first implementation of the freezer web ui. It's a read only version that permit to view the backups in swift made by the user. Change-Id: I79fd98ce3fc364c7a82a8b764e1733febb16b647
14 lines
262 B
Python
14 lines
262 B
Python
from django.utils.translation import ugettext_lazy as _
|
|
|
|
import horizon
|
|
|
|
from openstack_dashboard.dashboards.freezer import dashboard
|
|
|
|
|
|
class Freezerpanel(horizon.Panel):
|
|
name = _("Admin")
|
|
slug = "freezerpanel"
|
|
|
|
|
|
dashboard.Freezer.register(Freezerpanel)
|