Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-09-03 Thread King Niko
RESOLVED. I managed to fix it. The problem .. Was so obvious. In *views.py* I did not provide the* cart.html *and *checkout.html* with the same configurations as *store.html*. Thus, this caused the 500 server errors. I hope that this thread can help anyone in the future that encounters a similar p

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-09-03 Thread King Niko
Hi Kasper, I am getting the following error: raise TemplateDoesNotExist(template_name, chain=chain) django.template.exceptions.TemplateDoesNotExist: ./store/cart.html How can the template not exist if the other templates exist? Lol, it seems impossible. On Thu, Sep 3, 2020 at 8:31 AM Kasper La

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-09-03 Thread Kasper Laudrup
Hi King Niko, On 03/09/2020 13.44, King Niko wrote: Okay, so I fixed everything with Django Logging- including getting the pictures to show up in the store. What's written in the Django logs when you get the 500 errors? Kind regards, Kasper Laudrup -- You received this message because you

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-09-03 Thread King Niko
Okay, so I fixed everything with Django Logging- including getting the pictures to show up in the store. However, one thing still remains - recognizing the *store/cart.html* and *store/checkout.html* To get the pictures to appear from the DJANGO ADMINISTRATION, I used the following: urlpatterns

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-09-02 Thread Kasper Laudrup
Hi King Niko, On 02/09/2020 17.46, King Niko wrote: *I have not managed to get the Django log up and running, but this may help to get guidance on resolving the issue:* You should get access to the Django log. It's pointless to waste time on guessing what might be wrong when you could have

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-09-02 Thread King Niko
*I have not managed to get the Django log up and running, but this may help to get guidance on resolving the issue:* I have noticed that most of my bugs reside within utils.py under the "cart = {}" : def cookieCart(request): #Create empty cart for now for non-logged in user try: c

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-09-01 Thread Kasper Laudrup
Hi King Niko, On 01/09/2020 07.43, King Niko wrote: The console does not seem to provide much information. It is simply stating that there is a 500 Server Error. I tried sifting for more details but there were none. The console in your browser is not providing any information because it do

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-08-31 Thread King Niko
The console does not seem to provide much information. It is simply stating that there is a 500 Server Error. I tried sifting for more details but there were none. However, in the: *> heroku logs --tail * It simply mentions that none of the paths exist to *the cart * and *the images *that derive

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-08-31 Thread RANGA BHARATH JINKA
open console tab not elements tab On Tue, Sep 1, 2020 at 10:13 AM King Niko wrote: > Interesting, the browser console states the following: > > > > > Server Error (500) > > > Server Error (500) > > > > How could the *title* and *header 1* be causing the Server Error (500)? > > On Tue,

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-08-31 Thread King Niko
Interesting, the browser console states the following: Server Error (500) Server Error (500) How could the *title* and *header 1* be causing the Server Error (500)? On Tue, Sep 1, 2020 at 12:39 AM RANGA BHARATH JINKA < bharathjink...@gmail.com> wrote: > Hi, > check in browser consol

Re: DJANGO ADMINISTRATION ERROR & TemplateDoesNotExist

2020-08-31 Thread RANGA BHARATH JINKA
Hi, check in browser console for errors On Tue, Sep 1, 2020 at 2:27 AM Lightning Bit < thelegendofearthretu...@gmail.com> wrote: > I logged into the ADMIN PORTAL and saw that there was an image for each > item in the ADMIN PORTAL. > > Strangely, when returning to the website, I am unable to actu

Re: Django administration page, created a Site -- now what?

2011-05-07 Thread Boštjan Mejak
Thank you for your answers. I'll go read the docs then. ;) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr..

Re: Django administration page, created a Site -- now what?

2011-05-07 Thread Xavier Ordoquy
> Hello, > > I have created a new Site in my "Django administration" page. How can I use > it now? If I visit the URL that this newly created Site points to, I get a > URLconf error. So what do I need to add to my project's urls.py file? A > newbie here. Please help me on this. Thanks. Hi, I

Re: Django administration page, created a Site -- now what?

2011-05-06 Thread Andy McKay
On 2011-05-06, at 5:25 PM, Boštjan Mejak wrote: > I have created a new Site in my "Django administration" page. How can I use > it now? If I visit the URL that this newly created Site points to, I get a > URLconf error. So what do I need to add to my project's urls.py file? A > newbie here. Plea

Re: Django administration - Allow full HTML for a TextField form

2011-02-19 Thread NewNumOrder
Thanks for the help! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options,

Re: Django administration - Allow full HTML for a TextField form

2011-02-19 Thread Daniel Roseman
On Saturday, February 19, 2011 3:04:27 PM UTC, NewNumOrder wrote: > > I've tried enabling 'allow_tags' for a TextField, but the admin tools > still encode the text when inserting or updating rows. > > Is the following code correct? > some_field = models.TextField() > some_field.allow_tags = Tr

Re: DJANGO administration

2010-12-06 Thread mongoose
try this out http://docs.djangoproject.com/en/dev/intro/tutorial02/#customize-the-admin-look-and-feel On Dec 6, 12:21 pm, x_marine wrote: > Hi all, > > I have been using Django for a client. The client want the word " > Django Administration "  to be change to " Amazonia Administration" > > Wher

Re: DJANGO administration

2010-12-06 Thread Konrad Delong
On 6 December 2010 11:21, x_marine wrote: > Hi all, > > I have been using Django for a client. The client want the word " > Django Administration "  to be change to " Amazonia Administration" > > > Where do I find the html files and how do I change them? http://docs.djangoproject.com/en/dev/ref/c

Re: Django Administration

2007-05-23 Thread samira
Thanks alot. I can find it. another thing, as you can see in tables all records treted like object, do you think iut has a way to change this? for example when click to one table, primary keys of it sorted. On May 13, 11:47 am, Baurzhan Ismagulov <[EMAIL PROTECTED]> wrote: > On Sun, May 13, 2007

Re: Django Administration

2007-05-13 Thread Baurzhan Ismagulov
On Sun, May 13, 2007 at 12:18:22AM -0700, samira wrote: > I don't congifured it, how I can do this? > the error message is this"Not Found > The requested document was not found on this server." Are you using the apache web server? http://www.djangoproject.com/documentation/modpython/ may be helpf

Re: Django Administration

2007-05-13 Thread samira
I don't congifured it, how I can do this? the error message is this"Not Found The requested document was not found on this server." On May 13, 10:14 am, Baurzhan Ismagulov <[EMAIL PROTECTED]> wrote: > Hello samira, > > On Sun, May 13, 2007 at 12:03:13AM -0700, samira wrote: > > I want to use Adj

Re: Django Administration

2007-05-13 Thread samira
I don't congifured it, how I can do this? the error message is this"Not Found The requested document was not found on this server." --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Re: Django Administration

2007-05-13 Thread samira
I don't congifured it, how I can do this? the error message is this"Not Found The requested document was not found on this server." --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Re: Django Administration

2007-05-13 Thread samira
I don't congifured it, how I can do this? the error message is this"Not Found The requested document was not found on this server." --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Re: Django Administration

2007-05-13 Thread Baurzhan Ismagulov
Hello samira, On Sun, May 13, 2007 at 12:03:13AM -0700, samira wrote: > I want to use Adjango administrator. that is correct in my local, I > access to it throw this address: http://127.0.0.1:8000/admin/. but I > don't know how I can accees in my domain? Which web server are you using? Have you