mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-06 13:55:27 +00:00
5 lines
119 B
Python
5 lines
119 B
Python
from django import forms
|
|
|
|
|
|
class BillToForm(forms.Form):
|
|
bill_to = forms.CharField(max_length=500, required=False)
|