Fix incorrect example of mysql connection

The connection examples of mysql show incorrect information.
This patch make it right.

Change-Id: I7ec028aec01c2c9f400f4a65552b92d13952a1e3
This commit is contained in:
wangyao 2017-12-11 22:04:55 +08:00
parent cfbfa59c7f
commit 5a4903991e

View File

@ -12,7 +12,8 @@
{% else %}
<dd>{{ ip }}</dd>
<dt>{% trans "Connection Examples" %}</dt>
<dd>mysql {{ ip }} 3306</dd>
<dd>mysql -h {{ ip }} -u {% trans "USERNAME" %} -p</dd>
<dd>mysql://{% trans "USERNAME" %}:{% trans "PASSWORD" %}@{{ ip }}:3306/{% trans "DATABASE"%}</dd>
{% endif %}
{% endwith %}
</dl>