Update views.py

This update involves adding views for both the Alliance page and the existing view for the main page.

Raw Python Code:

from django.shortcuts import render

def home(request):
    return render(request, 'myapp/home.html')

def alliance(request):
    return render(request, 'myapp/alliance.html')