%if c.visual.repository_fields:
%if c.repo_fields:
${_('Label')} |
${_('Key')} |
${_('Type')} |
${_('Action')} |
%for field in c.repo_fields:
${field.field_label} |
${field.field_key} |
${field.field_type} |
${h.secure_form(h.route_path('edit_repo_fields_delete', repo_name=c.rhodecode_db_repo.repo_name, field_id=field.repo_field_id), request=request)}
${h.hidden('del_repo_field',field.repo_field_id)}
${h.end_form()}
|
%endfor
%endif
${h.secure_form(h.route_path('edit_repo_fields_create', repo_name=c.repo_name), request=request)}
${h.end_form()}
%else:
${_('Extra fields are disabled. You can enable them from the Admin/Settings/Visual page.')}
%endif