Django-Ready Bootstrap

Hey everyone, I need help with an issue I’m facing. Even after changing my URLs and updating my templates with Bootstrap, my old Django admin URLs keep reappearing instead of showing the updated Bootstrap-styled pages. What could be causing this, and how can I fix it?

///urls.py///

from django.contrib import admin
from django.urls import path
from studentorg.views import HomePageView
from studentorg import views


urlpatterns = [
   path("admin/", admin.site.urls),
   path('', views.HomePageView.as_view(), name='home'),
]

///views.py///

from django.shortcuts import render
from django.views.generic.list import ListView
from studentorg.models import Organization
from studentorg import views




class HomePageView(ListView):
    model = Organization
    context_object_name = 'home'
    template_name = 'home.html'

Welcome @JohnLicode !

You need to be a lot more specific and provide the full details of what it is you’re trying to do and what you’re looking to achieve.

Show the code for what you mean by “changing my URLs”, and “updating my templates” along with a more full description of what you mean by “my old Django admin URLs keep reappearing”.

Side Note: When posting code here, enclose the code between lines of three
backtick - ` characters. This means you’ll have a line of ```, then your code,
then another line of ```. This forces the forum software to keep your code
properly formatted. (I have taken the liberty of correcting your original posts.
Please remember to do this in the future.)

thanks for the response…Yes it keeps reappearing the old admin urls instead the new one that i applied the bootstrap in it