Re: Multiple Templates in single list view

2021-11-21 Thread Elena Williams
Hi, The problem is it's unclear what your question is. Can you be clearer about what outcome you're trying to achieve? --- Elena Williams Github: elena <http://github.com/elena/> On Mon, 22 Nov 2021 at 15:20, Trippy Samurai wrote: > Any one plz > > > On Sunday,

Re: updating model breaks admin

2018-04-30 Thread Gloria Elena
Hi George, Thanks for the advice. I tried both suggestions and I am still getting the same errors. Here is my articles app structure and admin.py: And here is my site structure: Thank you!! On Sun, Apr 29, 2018 at 11:50 PM, George Lubaretsi wrote: > If the data is not important, try to de

updating model breaks admin

2018-04-29 Thread Gloria Elena
Hi all, I want to request your help and I am sure you can guess by the question that I am fairly new to Django and THANK YOU IN ADVANCE, I would like to, someday, publish this portfolio website. I am sure I am making such a rookie mistake and will have to kick myself for making such a silly error

Pony flair for upcoming PyCons/DjangoCons/events

2015-03-12 Thread Elena Williams
ing one of these and now you can get one too. There will probably be some extra swag thrown in (like stickers, depending on availability) and a big pile of DjangoGirls warm-fuzzies. If you could help out by *retweeting* the above link that would be awesome too :) Thank you! --- Elena :) @el

Re: Python 3 Usage

2014-07-07 Thread Elena Williams
whether the costs outweigh the benefits of installing and maintaining your own versions of Python 3. --- Elena :) @elequ On Tue, Jul 8, 2014 at 10:17 AM, Timothy W. Cook wrote: > I've been using Python 3 with Django for about 8 months. No real > problems. Early on I had to patch a coupl

Journalists in the Django community, journalism advice

2014-07-04 Thread Elena Williams
ournalist/news types in our community I should contact? * Anyone have any notable news/journalism advice I should be passing along? Or, just contact me if you think there's anything I should mention, or have any friendly advice, thank you! --- Elena Williams :) @elequ -- You received this m

Re: How do I create a script to fill in django admin login form and submit?

2013-08-14 Thread Elena Williams
Have you explored the packages "selenium" or "sikuli" these are both great fun for front-end testing. You could intercept the RFID tag using python and feed it through one of the above tools, or something like this perhaps (if I've understood what you're trying to do

Re: Happy new year

2013-01-01 Thread Elena Williams
Happy New Year from to all the Djangonauts from stonking hot Australia! I hope everyone's Django projects are awesome and plentiful this year! Go you smart, creative Django folk! --- Elena :) @elequ On Wed, Jan 2, 2013 at 4:30 AM, Sultan Imanhodjaev < sultan.imanhodj...@gmail.co

Re: Reason for not allowing spaces in usernames?

2012-11-18 Thread Elena Williams
Apparently some weirdness can be caused by having email addresses as usernames in django, though I'm not sure specifically what this is. Does anyone know these cases? --- Elena :) @elequ On Mon, Nov 19, 2012 at 4:05 PM, Cal Leeming [Simplicity Media Ltd] < cal.leem...@simplicitymedial

Re: tutorial first step. -ImportError: No module named django.core-

2012-11-08 Thread Elena Williams
ind django-admin.py for it makes it seem as special as it is. --- Elena :) @elequ On Thu, Nov 8, 2012 at 7:29 PM, Francescos wrote: > Good good! > So, this means I was executing the wrong django-admin.py file. > Daniel, I'm curious about your question, too. Because I though that >

Re: configure url

2012-11-06 Thread Elena Williams
functional views the def would look as follows: def scarico(request, var1, var2, var3, myvar4): ... return HttpResponse(...) or alternatively if the variables are optional: def scarico(request, var1=None, var2=None, var3=None, myvar4=None): ... Regards, Elena :) On Wed, Nov 7,

Re: tutorial first step. -ImportError: No module named django.core-

2012-11-05 Thread Elena Williams
Hi Francesco, What happens when you try: $ cd C:\Python27\fra_env\ (or whatever the equivalent of this might be in the shell you are using) $ python Scripts\django-admin.py startproject mysite Regards, Elena :) On Mon, Nov 5, 2012 at 1:19 AM, Francescos wrote: > Hi Elena, > > T

Re: Location of non-app-specific static files?

2012-11-03 Thread Elena Williams
Hi Ryan, I'm not sure if it helps but not long ago I found this by Simon Willison on Quora: http://www.quora.com/Django/How-do-you-organize-the-code-in-your-Django-project Cheers, Elena :) --- Elena :) @elequ 04022 90172 On Sun, Nov 4, 2012 at 10:23 AM, Ryan wrote: > Hi, > &g

Re: tutorial first step. -ImportError: No module named django.core-

2012-11-03 Thread Elena Williams
>>> import django Also where is your django-admin.py file located? Elena :) --- Elena :) @elequ 04022 90172 On Sun, Nov 4, 2012 at 6:24 AM, Francescos wrote: > Hello everyone, > Following the django tut I've sat up all the installation and reached the > step where I had to

Re: Django Development Model

2012-11-02 Thread Elena Williams
chat with BDFL/s and this is really informative on how the Django internal design/decision making processes really work. Also Russell Keith-Magee's "No, Bad Pony" talk which he re-gave recently at PyCon AU, but had previously given at DjangoCon would probably answer some of you

Re: no Polls in the admin page

2012-11-02 Thread Elena Williams
admin from mysite.polls.models import Poll, Choice class ChoiceInline(admin.TabularInline): model = Choice extra = 1 class PollAdmin(admin.ModelAdmin): inlines = [ChoiceInline] admin.site.register(Poll, PollAdmin) --- Elena :) @elequ 04022 90172 On Fri, Nov 2, 2012 at 2:42 PM

Re: Easy way to make all form fields read only?

2012-10-31 Thread Elena Williams
I was also going to suggest using crispy forms -- having used it on a recent project I'd strongly recommend it (it's great when it's plugged in to existing stylings such as: uni-form or bootstrap). I've used it with ModelForm using Layout() and Field() and it works a treat.

Re: Easy way to make all form fields read only?

2012-10-30 Thread elena
edentials" from `django.contrib.auth`? Regards, Elena On Tuesday, October 30, 2012 11:04:55 AM UTC+11, Matt Woodward wrote: > > Semi-new to Django and working on my first "real" app, and I have a need > based on the user's credentials to display forms as either editable or >