Finish basic API implementation
This commit is contained in:
@ -3892,3 +3892,11 @@ def index_view(request):
|
||||
"<h1>System Error</h1><p>Failed to load supervisor interface</p>",
|
||||
status=500
|
||||
)
|
||||
|
||||
# Import LocationCheckinView for evaluation_value-based interactions
|
||||
from .location_checkin_view import LocationCheckinView
|
||||
|
||||
def location_checkin_test(request):
|
||||
"""ロケーションチェックインのテストページ"""
|
||||
from django.shortcuts import render
|
||||
return render(request, 'location_checkin_test.html')
|
||||
|
||||
Reference in New Issue
Block a user