%if c.visual.repository_fields: %if c.repo_fields:
%for field in c.repo_fields: %endfor
${_('Label')} ${_('Key')} ${_('Type')} ${_('Action')}
${field.field_label} ${field.field_key} ${field.field_type} ${h.form(url('delete_repo_fields', repo_name=c.repo_info.repo_name, field_id=field.repo_field_id),method='delete')} ${h.submit('remove_%s' % field.repo_field_id, _('delete'), id="remove_field_%s" % field.repo_field_id, class_="action_button", onclick="return confirm('"+_('Confirm to delete this field: %s') % field.field_key+"');")} ${h.end_form()}
%endif ${h.form(url('create_repo_fields', repo_name=c.repo_name),method='put')}
${h.text('new_field_key', class_='small')}
${h.text('new_field_label', class_='small', placeholder=_('Enter short label'))}
${h.text('new_field_desc', class_='small', placeholder=_('Enter description of a field'))}
${h.submit('save',_('Add'),class_="btn")} ${h.reset('reset',_('Reset'),class_="btn")}
${h.end_form()} %else:
${_('Extra fields are disabled')}
%endif