diff options
author | Michael Elkins <melkins@tislabs.com> | 2012-01-20 14:38:14 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2012-01-20 14:38:14 +0000 |
commit | af9086bd367c023647e60490e0f32e03105408b2 (patch) | |
tree | ca950ec198061f7678fe02e70cf10c40f2f0d572 /rpkid/rpki/gui/app/views.py | |
parent | 329707277cfd17cd5945e72339a320bc5c7f6282 (diff) |
fix roa request list template to reflect the irdb RoaRequestPrefix model
add stub view function for roa creation as a placeholder so that the {% url %} for the Create button doesn't throw an exception.
svn path=/branches/tk161/; revision=4246
Diffstat (limited to 'rpkid/rpki/gui/app/views.py')
-rw-r--r-- | rpkid/rpki/gui/app/views.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rpkid/rpki/gui/app/views.py b/rpkid/rpki/gui/app/views.py index 72258e45..e6bc9a44 100644 --- a/rpkid/rpki/gui/app/views.py +++ b/rpkid/rpki/gui/app/views.py @@ -430,6 +430,10 @@ def roa_delete(request, pk): 'routes': routes }, request) @handle_required +def roa_create(request): + conf = request.session['handle'] + +@handle_required def ghostbusters_list(request): """ Display a list of all ghostbuster requests for the current Conf. |