Make folder name textbox full width

Folder names can be quite long. It’s annoying if they get cut off.
This commit is contained in:
Chris Hill-Scott
2019-05-13 11:04:50 +01:00
committed by GitHub
parent 1d7ce85443
commit e8c1a7deea

View File

@@ -24,7 +24,7 @@
</div>
{% call form_wrapper(action=url_for('main.manage_template_folder', service_id=current_service.id, template_folder_id=template_folder_id)) %}
{{ textbox(form.name) }}
{{ textbox(form.name, width='1-1') }}
{% if current_service.has_permission("edit_folder_permissions") %}
{% if current_user.has_permissions("manage_service") and form.users_with_permission.all_service_users %}
{{ checkboxes(form.users_with_permission) }}