mirror of
https://github.com/correl/codereview.git
synced 2024-12-29 11:09:20 +00:00
8 lines
270 B
Python
8 lines
270 B
Python
|
from django import forms
|
||
|
from codereview.review.models import *
|
||
|
|
||
|
class NewCommitReviewForm(forms.Form):
|
||
|
author = forms.IntegerField(widget=forms.HiddenInput)
|
||
|
repo = forms.IntegerField(widget=forms.HiddenInput)
|
||
|
ref = forms.CharField(widget=forms.HiddenInput)
|