Re: Is there a plan to modernize Django-admin?

2015-07-17 Thread Ezequiel Bertti
Do you already see this project? https://github.com/sshwsfc/django-xadmin On Fri, Jul 17, 2015 at 9:03 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > > On Sat, Jul 18, 2015 at 2:54 AM, xliiv > wrote: > >> Hi! >> Like the topic, though I don't mean

Re: Is there a plan to modernize Django-admin?

2015-07-17 Thread Russell Keith-Magee
On Sat, Jul 18, 2015 at 2:54 AM, xliiv wrote: > Hi! > Like the topic, though I don't mean only frontend. > Backend could be also rewritten with for example class-based views and > other stuff used in regular Django apps? > Would it be a waste? I'm just curious what

Re: Amazon S3 Storage

2015-07-17 Thread Rootz
Thanks. However is there a similar Django-package for the Google Drive API? On Thursday, July 16, 2015 at 10:22:32 PM UTC-5, Bill Blanchard wrote: > > I've used this with success in the past: > > https://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html > > On Thu, Jul 16, 2015 at

Re: Interfacing Django Project with Python Script

2015-07-17 Thread Gergely Polonkai
I think what you really need is a custom Django management command. You can take a look at the implementation of createsuperuser, it takes some input and creates a user based on this info. On 17 Jul 2015 18:55, "Jake Rudolph" wrote: > So basically I have my Django app that

Is there a plan to modernize Django-admin?

2015-07-17 Thread xliiv
Hi! Like the topic, though I don't mean only frontend. Backend could be also rewritten with for example class-based views and other stuff used in regular Django apps? Would it be a waste? I'm just curious what is your opinion. :) -- You received this message because you are subscribed to

A native Django multiprocessing task queue - feedback wanted

2015-07-17 Thread Ilan
About a month ago I started working on a multiprocessing task queue for Django. It is not supposed to be a Celery beater, but a simpler Django integrated alternative with similar performance. This is my first big open source project for Django and I want your feedback in this early stage. Have

Re: Regarding Learning Django with collaboration

2015-07-17 Thread Ari Davidow
If you are in the Boston area, there are two excellent places to collaborate. First, the Boston Python meetup holds monthly "project nights" where you are welcome to bring your project over to Microsoft's New England Research center ("NERD") and work with volunteers who can answer questions, help

Re: Regarding Learning Django with collaboration

2015-07-17 Thread felix
*From: * Ben Thompson *Sender: * django-users@googlegroups.com *Date: *Fri, 17 Jul 2015 09:20:49 -0700 (PDT) *To: * *ReplyTo: * django-users@googlegroups.com *Subject: *Re: Regarding Learning Django with collaboration I have a small group

Re: Interfacing Django Project with Python Script

2015-07-17 Thread Jake Rudolph
So basically I have my Django app that takes in information from a user to make new objects, and I need to send some of that information to a separate script that performs logic and such with that information. When certain events occur I need to send information from the script to the database.

Re: Regarding Learning Django with collaboration

2015-07-17 Thread jdaramola8888
Ben Thompson, what's your private Email... I'm 100 percent interested.. John Sent from my BlackBerry wireless device from MTN -Original Message- From: Ben Thompson Sender: django-users@googlegroups.com Date: Fri, 17 Jul 2015 09:20:49 To:

Re: Regarding Learning Django with collaboration

2015-07-17 Thread Ben Thompson
I have a small group myself that I have been looking to expand. At the moment there is myself and two others with 4 years of Python experience and about a year and a bit of experience with Django under our belt. We are slowly working on a content management system in Django ourselves

ImportError after some updates

2015-07-17 Thread Marta J.
Hi, I am following tutorial (for Django 1.8 ), I am using Windows 8, Pycharm, Python 2.7.9 and Django 1.8.3. I have reached the third chapter (on views) and somewhere on the way I restarted my laptop and probably installed some updates.

Re: How do I install Python 3 in a virtualenv on a MAC ?

2015-07-17 Thread Scot Hacker
On Thursday, July 16, 2015 at 2:24:10 PM UTC-7, plan9d...@gmail.com wrote: > > I'm new to Django and would like to install Python 3.x in a virtualenv so > I can follow the tutorial given on the Django website. > How do I install Python 3.x (latest version) within a virtualenv on a Mac? >

Re: Regarding Learning Django with collaboration

2015-07-17 Thread Charito Romeo
I'm in. On Fri, Jul 17, 2015 at 4:00 PM, wrote: > I'm interested in learning python and django, I'm pretty new... Tanx > > John. > Sent from my BlackBerry wireless device from MTN > > -Original Message- > From: Rohit kumar > Sender:

Re: design decision tree survey using django admin interface

2015-07-17 Thread ananya choudhury
Can this be done using Django-dynamic-forms? On Fri, Jul 17, 2015 at 5:22 AM, Derek wrote: > I doubt this is possible with plain admin, which is designed for CRUD > operations > > Trying looking into form wizards: >

Re: Interfacing Django Project with Python Script

2015-07-17 Thread Larry Martell
On Thu, Jul 16, 2015 at 7:44 PM, Jake Rudolph wrote: > If I have a separate Python script that I want to interact with my Django > project, how do I set them up to communicate? Not 100% sure what you mean. Do you mean you want to have a standalone python script that uses

Re: Django - Website Bootstrap Design Breaks For Production

2015-07-17 Thread Timothy W. Cook
You may find that even after running collectstatic the dev server doesn't see the static files. You can add the --insecure option to runserver, with DEBUG=False and it should work as expected. On Fri, Jul 17, 2015 at 6:44 AM, Andreas Kuhne wrote: > Hi, > > There is

Re: Django - Website Bootstrap Design Breaks For Production

2015-07-17 Thread Andreas Kuhne
Hi, There is a difference to running the runserver in development and production mode. In development mode the server automatically serves all of you static files (JS and CSS). In production mode you should have a webserver in front of the uwsgi server that serves the python code. For example you

Re: design decision tree survey using django admin interface

2015-07-17 Thread Derek
I doubt this is possible with plain admin, which is designed for CRUD operations Trying looking into form wizards: https://docs.djangoproject.com/en/1.7/ref/contrib/formtools/form-wizard/ or, if that cannot handle your logic, then write an action:

Re: Regarding Learning Django with collaboration

2015-07-17 Thread jdaramola8888
I'm interested in learning python and django, I'm pretty new... Tanx John. Sent from my BlackBerry wireless device from MTN -Original Message- From: Rohit kumar Sender: django-users@googlegroups.com Date: Fri, 17 Jul 2015 13:06:22 To:

Re: Match multiple URLs to the same pattern

2015-07-17 Thread Derek
Yes; Django says pretty much this same thing "on the tin": "A view function, or *view* for short, is simply a Python function that takes a Web request and returns a Web response." ( https://docs.djangoproject.com/en/dev/topics/http/views/ ) (I think there *is* magic in Django; but its in the

Re: Help me develop a Job Tracker (?)

2015-07-17 Thread Softeisbieger
Ok, so I set up the FormWizard, but it has some strange side effects. I implemented the process in three steps: 1. Choose a workflow 2. Specify information for the new Job (Adress, deadline, customer...) 3. Review deadlines and assigness for the different steps. Problems occur in the

Regarding Learning Django with collaboration

2015-07-17 Thread Rohit kumar
Hi People, Are there any people who are learning Python and even planning to learn Django and keen interested to form a group as such towards this learning curve I am interested to form a group where we interested folks, will start learning Python alongside Django by working on a concept to