mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-11 11:51:27 +00:00
16 lines
303 B
Python
16 lines
303 B
Python
![]() |
from django import forms
|
||
|
from models import GroupRepo
|
||
|
|
||
|
|
||
|
class GroupAddRepoForm(forms.Form):
|
||
|
"""
|
||
|
Form for adding repo to a group.
|
||
|
|
||
|
"""
|
||
|
|
||
|
repo_id = forms.CharField(max_length=36)
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super(GroupAddRepoForm, self).__init__(*args, **kwargs)
|
||
|
|