1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-30 00:42:53 +00:00
seahub/share/forms.py
2012-06-12 10:15:47 +08:00

10 lines
218 B
Python

from django import forms
class RepoShareForm(forms.Form):
"""
Form for sharing repo to user or group.
"""
email_or_group = forms.CharField(max_length=512)
repo_id = forms.CharField(max_length=36)