13 lines
		
	
	
	
		
			715 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			715 B
		
	
	
	
		
			Text
		
	
	
	
	
	
= render 'shared/error_messages', object: form.object
 | 
						|
 | 
						|
.fields-row
 | 
						|
  .fields-row__column.fields-row__column-6.fields-group
 | 
						|
    = form.input :max_uses, wrapper: :with_label, collection: invites_max_uses_options, label_method: ->(num) { I18n.t('invites.max_uses', count: num) }, prompt: I18n.t('invites.max_uses_prompt')
 | 
						|
  .fields-row__column.fields-row__column-6.fields-group
 | 
						|
    = form.input :expires_in, wrapper: :with_label, collection: invites_expires_options.map(&:to_i), label_method: ->(i) { I18n.t("invites.expires_in.#{i}") }, prompt: I18n.t('invites.expires_in_prompt')
 | 
						|
 | 
						|
.fields-group
 | 
						|
  = form.input :autofollow, wrapper: :with_label
 | 
						|
 | 
						|
.actions
 | 
						|
  = form.button :button, t('invites.generate'), type: :submit
 |