Re: Help me develop a Job Tracker (?)

2015-06-30 Thread Softeisbieger
I knew there had to be something like a workflow engine, thanks for the hint. I had a look at django-viewflow which looks pretty promising. Still, as far as I'm aware, some points are beyond the scope of this framework: - It would be nice if users could set up their own workflows. - I wou

Django 1.8.2 - handler404 and handler500 refusing to work

2015-06-30 Thread simon
Good afternoon all, Perhaps someone can give me a pointer here: I'm an old hand at Django (1.0 to 1.6) but now in 1.8.2, the documented process of writing and attaching custom handlers for '404' and '500' appears to have stopped working. As per the dox, I have added into my ROOT url file, the

Re: Apps for versioning model fields

2015-06-30 Thread Afonso Ribas
Hi Fabio, Have you tried these django packages?: Simple History: https://www.djangopackages.com/packages/p/django-simple-history/ AuditLog: https://www.djangopackages.com/packages/p/django-auditlog/ CleanerVersion: https://www.djangopackages.com/packages/p/cleanerversion/ Or any other from: htt

Diable basic auth on some pages

2015-06-30 Thread Cherie Pun
Hi, In the dev version of the website, we are using basic auth to limit access. However, we are currently developing an api for the website and I would like to use the api without going through the basic auth. Is it possible to disable basic auth for all the api urls? Cheers, Cherie -- You r

Django REST Cross Domain Request to Download a File

2015-06-30 Thread Garry D Thompson
So I am trying to download a file via Django REST (referred to as the Back End from now on) instance through my web page. The web page and the Back End are currently installed on two different servers so this is a cross domain request. Now, I have no problem making cross domain requests to any

Re: Diable basic auth on some pages

2015-06-30 Thread Alex Heyden
Cherie, By default, there are no authentication controls in Django. Barring some custom middleware, authentication checks are performed within the views themselves or through something like the @login_required or @user_passes_test decorators. Are you certain that authentication is what's blocking

STATIC_URL with thumbnail_url Template Tag

2015-06-30 Thread Stephanie Socias
Hello, I'm trying to use an image from my 'static' folder in one of my templates. I need to pass the image into the thumbnail_url filter but I can't get it to work. The image is not found. How do I specify the correct image path? (I posted this same question on stackoverflow

Re: new installations tryout problem

2015-06-30 Thread elim
Thanks a lot Mike Dewhirst. I think that's issue. Directly check the database, there is no poll record there. My current models.py in poll reads like import datetime from django.db import models from django.utils import timezone # Create your models here. class Poll(models.Model): def __u