blob: fda6faaac48e03fa35d23e41309b344a6faeaba9 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from django import forms
from myrpki import models
# TODO: Point the cert.conf to the handle from the session
class CertForm( forms.ModelForm ):
class Meta:
model = models.Cert
|