Commit 166ccf8b authored by BaiJiangJie's avatar BaiJiangJie

[Feature] 应用管理:数据库应用添加翻译

parent 573f9a45
...@@ -52,7 +52,7 @@ class Database(OrgModelMixin): ...@@ -52,7 +52,7 @@ class Database(OrgModelMixin):
max_length=128, null=True, verbose_name=_('Created by') max_length=128, null=True, verbose_name=_('Created by')
) )
date_created = models.DateTimeField( date_created = models.DateTimeField(
auto_now_add=True, verbose_name=_('Date Created') auto_now_add=True, verbose_name=_('Date created')
) )
date_updated = models.DateTimeField( date_updated = models.DateTimeField(
auto_now=True, verbose_name=_('Date updated') auto_now=True, verbose_name=_('Date updated')
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
{% block table_search %}{% endblock %} {% block table_search %}{% endblock %}
{% block table_container %} {% block table_container %}
<div class="uc pull-left m-r-5"> <div class="uc pull-left m-r-5">
<a href="{% url 'applications:database-create' %}" class="btn btn-sm btn-primary"> {% trans "Create Database" %} </a> <a href="{% url 'applications:database-create' %}" class="btn btn-sm btn-primary"> {% trans "Create database" %} </a>
</div> </div>
<table class="table table-striped table-bordered table-hover " id="database_list_table" > <table class="table table-striped table-bordered table-hover " id="database_list_table" >
<thead> <thead>
......
...@@ -43,7 +43,7 @@ class DatabaseCreateView(PermissionsMixin, SuccessMessageMixin, CreateView): ...@@ -43,7 +43,7 @@ class DatabaseCreateView(PermissionsMixin, SuccessMessageMixin, CreateView):
def get_context_data(self, **kwargs): def get_context_data(self, **kwargs):
context = { context = {
'app': _('Applications'), 'app': _('Applications'),
'action': _('Create Database'), 'action': _('Create database'),
'type': 'create', 'type': 'create',
} }
kwargs.update(context) kwargs.update(context)
......
This diff is collapsed.
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