Re: Sequence order in django

2023-04-23 Thread Nitesh Solanki
Hi Pooja, Can you please explain it a little bit like, suppose you are having 10 tracks in a list and you select 5th, then what do you want while you are having two partitions? first partition - 1st to 4th tracks (before the 5th track) second partition - 6th to 10th tracks (after the 5th

Re: Django urls error

2023-04-23 Thread Nitesh Solanki
myproject (main app) myapp (additional app) Code: myproject/urls.py from django.contrib import admin from django.urls import path, include from .views import HomeView urlpatterns = [ path('admin/', admin.site.urls), path('', HomeView, name='home'), ### will refer to main app views.py.

Re: Web portal by Django

2023-04-23 Thread Nitesh Solanki
Hi Ananya, You can follow this - https://djangoforbeginners.com/introduction/ On Thursday, 13 April, 2023 at 7:13:05 pm UTC+5:30 Ryan Nowakowski wrote: > I recommend starting from the tutorial. That'll give you some idea of what > Django is capable of. Then you can build your web portal after