Suggestions Front tool

2020-07-07 Thread kishore babu
Hi, I have TCL frame work with me, we keep on using it for our activities currently, its CLI based and running in laptop in cmd windows We used to open two config files and start the cli command for the execution, but i see few mistakes and more man power is required where no documentation n

django.core.exceptions.ImproperlyConfigured: The included URLconf 'simplesocial.urls' does not appear to have any patterns in it

2020-07-07 Thread Exactly musty
Show your URLs.py and your imports -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web

Re: django.core.exceptions.ImproperlyConfigured: The included URLconf 'simplesocial.urls' does not appear to have any patterns in it

2020-07-07 Thread Evolution2020 evo
check your URL's and views first are they configured well On Tuesday, July 7, 2020 at 3:37:37 PM UTC+3, Zabihullah Danish wrote: > > *Dear Friends greetings* > since couple of days i am having the error see in attached file while i am > running *python manage.py runserver *getting the attached er

Re: Suggestions Front tool

2020-07-07 Thread Derek
You are better off using Django for what is it designed for - web-based systems - and rather use other Python alternatives for desktop-based GUIs e.g. pyQT (see various resources such as https://blog.resellerclub.com/the-6-best-python-gui-frameworks-for-developers/ ) On Tuesday, 7 July 2020 14

Re: Django

2020-07-07 Thread Mottaz Hegaze
try this in your project urls not your app urls register the namespace like this path('' , include('blog.urls' , namespace="post") On Tue, Jul 7, 2020 at 5:11 PM Tanni Seriki wrote: > Please family.please help me out, > Am trying to create a posts details Page, in model.py I declare a get >

Re: Django

2020-07-07 Thread Tanni Seriki
Thanks sir I tried that also, But it brinks another error No reverse for index, index not a valid function On Tue, Jul 7, 2020, 4:38 PM Mottaz Hegaze wrote: > try this > > in your project urls not your app urls register the namespace like this > > path('' , include('blog.urls' , namespace="post"

Re: Django

2020-07-07 Thread Mottaz Hegaze
try to use function name IndexList with reverse , not the url name i don't see all your code On Tue, Jul 7, 2020 at 5:41 PM Tanni Seriki wrote: > Thanks sir I tried that also, > But it brinks another error > No reverse for index, index not a valid function > > On Tue, Jul 7, 2020, 4:38 PM Motta

Re: Django

2020-07-07 Thread Tanni Seriki
Ok... Sir please Can I have your WhatsApp number, So that you could put me through better On Tue, Jul 7, 2020, 4:58 PM Mottaz Hegaze wrote: > try to use function name IndexList with reverse , not the url name > i don't see all your code > > On Tue, Jul 7, 2020 at 5:41 PM Tanni Seriki > wrote:

Re: Static not working on unix while working on windows

2020-07-07 Thread ashish goyal
Hey musty, No those basic things are working already on windows. But not on linux. Once hosted css is not available, even after i did collectstatic in static folder but still css n js are not loading with static > To unsubscribe from this group and stop receiving emails from it, send an > ema

Re: Static not working on unix while working on windows

2020-07-07 Thread Exactly musty
Oh,have you run migration yet,if you haven't, you need to sometimes while hosting -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@goog

Re: Django

2020-07-07 Thread Exactly musty
You wont get your question answered if you snap your code with your phone,is either you copy and paste the code or screen shot your laptop,ain't seeing shit if you want your question you should edit it -- You received this message because you are subscribed to the Google Groups "Django users"

Re: Static not working on unix while working on windows

2020-07-07 Thread Kevin Jay
I’ve had the same issue in the past. I fixed it by removing *rel="stylesheet * On Mon, Jul 6, 2020 at 1:20 PM ashish goyal wrote: > Hi All, > > I have created a django app on windows and have used bootstrap navbar n > other functions which are working good on windows. > > Same files I have impo

Re: Static not working on unix while working on windows

2020-07-07 Thread Kevin Jay
You also need to close your quote. On Tue, Jul 7, 2020 at 11:54 AM Kevin Jay wrote: > I’ve had the same issue in the past. I fixed it by removing > *rel="stylesheet * > > > On Mon, Jul 6, 2020 at 1:20 PM ashish goyal > wrote: > >> Hi All, >> >> I have created a django app on windows and have us

Re: Static not working on unix while working on windows

2020-07-07 Thread Avi shah
Hi Ashish , I had the same error while deploying my django on iis windows server just copy paste the below code into your settings.py and you will have no issues And i have done for js , you can do it for css too import mimetypes mimetypes.add_type("text/plain", ".js", True) mimetypes.add_type("t

transforming form input

2020-07-07 Thread Kai Kobschätzki
Hi: Although I spent time with researching I have no starting point for solving my problem. Perhaps someone of you could give me a tip.. I have a simple model.py, e.g. class AdressData(models.Model):     forename=models.CharField(max_length=20,null=True,blank=True)    surname=models.CharField(

Re: Static not working on unix while working on windows

2020-07-07 Thread ashish goyal
Ok avi (Import mimetypes) and kevin (Remove stylesheet - hope this works on redhat) will follow both changes and come back. Since database is same When i was developing on windows and when i migrate to linux redhat then no migration needs to be apply when i did migrate. Sent from my iPhone > O