Commit f8db9f48 authored by BaiJiangJie's avatar BaiJiangJie

[Update] 添加翻译-云管理模块

parent 5457118f
...@@ -31,6 +31,8 @@ class Node(OrgModelMixin): ...@@ -31,6 +31,8 @@ class Node(OrgModelMixin):
return self.full_value return self.full_value
def __eq__(self, other): def __eq__(self, other):
if not other:
return False
return self.key == other.key return self.key == other.key
def __gt__(self, other): def __gt__(self, other):
......
This diff is collapsed.
...@@ -91,6 +91,10 @@ ...@@ -91,6 +91,10 @@
{% for plugin in XPACK_PLUGINS %} {% for plugin in XPACK_PLUGINS %}
<li id="{{ plugin.name }}"><a href="{{ plugin.endpoint }}">{% trans plugin.verbose_name %}</a></li> <li id="{{ plugin.name }}"><a href="{{ plugin.endpoint }}">{% trans plugin.verbose_name %}</a></li>
{% endfor %} {% endfor %}
<li id="id_cloud_account"><a href="{% url 'xpack:cloud:account-list' %}">{% trans 'Account list' %}</a></li>
<li id="id_cloud_sync_task"><a href="{% url 'xpack:cloud:sync-task-list' %}">{% trans 'Sync task list' %}</a></li>
</ul> </ul>
</li> </li>
{% endif %} {% endif %}
......
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 to comment