aboutsummaryrefslogtreecommitdiff
path: root/portal-gui/rpki/myrpki/forms.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2009-11-13 05:59:19 +0000
committerRob Austein <sra@hactrn.net>2009-11-13 05:59:19 +0000
commit47379800ff188fe91b8fd8e1848078efefa5cc1e (patch)
tree8716c9c4bfa73463e9cf4b63ed7d26d94d076aa0 /portal-gui/rpki/myrpki/forms.py
parent7cff9da43227a4c66c61096a495fc4033a8c70a8 (diff)
Import (unfinished) portal code
svn path=/portal-gui/rpki/__init__.py; revision=2879
Diffstat (limited to 'portal-gui/rpki/myrpki/forms.py')
-rw-r--r--portal-gui/rpki/myrpki/forms.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/portal-gui/rpki/myrpki/forms.py b/portal-gui/rpki/myrpki/forms.py
new file mode 100644
index 00000000..fda6faaa
--- /dev/null
+++ b/portal-gui/rpki/myrpki/forms.py
@@ -0,0 +1,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
+