Commit 438460ef by Őry Máté

vm: fix ops in different models but the same name

parent af2cfb2c
...@@ -184,7 +184,7 @@ class OperationView(RedirectToLoginMixin, DetailView): ...@@ -184,7 +184,7 @@ class OperationView(RedirectToLoginMixin, DetailView):
@classmethod @classmethod
def get_urlname(cls): def get_urlname(cls):
return 'dashboard.vm.op.%s' % cls.op return 'dashboard.%s.op.%s' % (cls.model._meta.model_name, cls.op)
@classmethod @classmethod
def get_instance_url(cls, pk, key=None, *args, **kwargs): def get_instance_url(cls, pk, key=None, *args, **kwargs):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment