Example #1
0
def node_snapshot(request):
    t = functions.node_snapshot()
    data = functions.paginator(request, t)
    data["breadcrumb"] = functions.breadcrumb('snapshot')
    return render(request,'node_view.html', data)
    
    
    
    
    
    
    
    
    
    
    
    
Example #2
0
def node(request, name):  
    t = functions.query(name)
    data = functions.paginator(request, t)
    data["breadcrumb"] = functions.breadcrumb(name)
    return render(request,'node_view.html', data)
Example #3
0
def node_year_month_day(request, name, year, month, day):
    t = functions.query(name, year, month, day)
    data = functions.paginator(request, t)
    data["breadcrumb"] = functions.breadcrumb(name,year,month,day)
    return render(request,'node_view.html', data)