mirror of
https://github.com/Sosokker/Inventory-Management-System.git
synced 2025-12-19 23:44:05 +01:00
6 lines
180 B
Python
6 lines
180 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
@login_required
|
|
def test(request):
|
|
return render(request, 'inventory/index.html') |