This update involves adding views for both the Alliance page and the existing view for the main page.
from django.shortcuts import render
def home(request):
return render(request, 'myapp/home.html')
def alliance(request):
return render(request, 'myapp/alliance.html')