structure and basic setup

This commit is contained in:
mattijs vanhaverbeke
2020-04-15 16:41:13 +02:00
parent 2543f63f7f
commit a4807b306b
36 changed files with 5070 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.shortcuts import get_object_or_404, render
from django.views.generic import View
class TopologyHomeView(View):
"""
Show the home page
"""
def get(self, request):
return render(request, 'netbox_topology_views/index.html')