You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
544 B

  1. <label for="text_dbname">{% trans 'Add privileges on the following database(s):' %}</label>
  2. {%- if databases is not empty %}
  3. <select name="pred_dbname[]" multiple="multiple">
  4. {% for database in databases %}
  5. <option value="{{ Util_escapeMysqlWildcards(database) }}">
  6. {{ database }}
  7. </option>
  8. {% endfor %}
  9. </select>
  10. {% endif -%}
  11. <input type="text" id="text_dbname" name="dbname" />
  12. {{ Util_showHint("Wildcards % and _ should be escaped with a \\ to use them literally."|trans) }}