I'm just working on a book for my own project, and I was wondering: Is
the Django book written in ReST/Sphinx? I am considering whether I
should write my book with that.
Thanks,
Ram.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to th
On Mon, May 17, 2010 at 2:00 AM, Russell Keith-Magee <
russ...@keith-magee.com> wrote:
> On Mon, May 17, 2010 at 7:06 AM, cool-RR wrote:
> > I'm just working on a book for my own project, and I was wondering: Is
> > the Django book written in ReST/Sphinx? I am consid
Hello!
There's something that's bothering me:
When developing a Django application, what is `sys.path` supposed to
contain? The directory which contains the project, or the directory of
the project, or both?
What led me to this question is a failure when using
`urlresolvers.reverse`. It's giving
On Sep 17, 10:13 am, bruno desthuilliers
wrote:
> On 16 sep, 18:06, cool-RR wrote:
>
> > Hello!
>
> > There's something that's bothering me:
>
> > When developing a Django application, what is `sys.path` supposed to
> > contain? The directory w
Hello,
Does anyone have a ready-made template with a dark color scheme for
the admin site? Ideally I'd want something where the text is light
grey and the background is dark grey, but I'd settle for anything
light-on-dark.
--
You received this message because you are subscribed to the Google Gro
Does `admin` provide a way to force using it through https? I'd want
it to simply redirect a user which doesn't use https to the same
address, except with https instead of http.
Is there something like this built into `admin`?
Ram.
--
You received this message because you are subscribed to the
Why doesn't runserver automatically serve in https as well as http? It
would have been useful.
Ram.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this gro
al
> host and then use reverse proxy:
>
> ProxyPass /http://localhost:8000/
> ProxyPassReverse /http://localhost:8000/
>
> On Feb 28, 5:09 pm, cool-RR wrote:
>
>
>
> > Why doesn't runserver automatically serve in https as well as http? It
> > wou
Adnan, I'm really baffled by your response. No, my reasons for using SSL
here is not because I'm afraid someone will sniff my data, We are talking
here about `runserver`, which is the development server which is never used
for production. The goal of `runserver` is to be able to easily test how
you
I did the middleware to do this, but I figured that making the admin
encrypted would be a common enough task that it should be a builtin
option in the admin. So anyway, +1 for that.
On Mar 1, 5:21 pm, Malcolm Box wrote:
> You could, but doing it on the front-end webserver makes more sense.
>
> Ma
Hello Django community,
I have started compiling a list, "Common causes for translation
problems". Where would be a good place to put this list so people who
have a problem with their translations will be most likely to
encounter it?
Ram Rachum.
--
You received this message because you are subs
i18n.)
Thanks,
Ram.
On Sat, Mar 20, 2010 at 8:17 AM, Russell Keith-Magee wrote:
> On Fri, Mar 19, 2010 at 9:16 PM, cool-RR wrote:
> > Hello Django community,
> >
> > I have started compiling a list, "Common causes for translation
> > problems". Where w
Hi guys,
I have a project online whose SECRET_KEY was compromised. I obviously want
to change it. Would anything bad happen if I change it? Would some things
not work? Is it safe to just change it? Anything I should do?
Thanks,
Ram.
--
You received this message because you are subscribed to
Hi guys,
I want to watch videos of talks from the recent Djangocon. But, I don't
want to weed through all of them manually looking for the best ones. Did
anyone make a "best of" list? Is there a way to sort by popularity or
rating or something?
Thanks,
Ram.
--
You received this message beca
Hey,
Does anyone know what's up with django-registration 0.8 not being on PyPI?
Ram.
--
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 emai
Hello,
How do I change my user password on Django's bug tracker?
Thanks,
Ram.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-users/-/Z1HJTz2KIkEJ.
To post to th
Hi guys,
I'm trying to solve a problem using the new `Prefetch` but I can't figure
out how to use it.
I have these models:
class Desk(django.db.models.Model):
pass
class Chair(django.db.models.Model):
desk = django.db.models.Foreignkey('Desk', related_name='chair',
7;ve tried (with code examples if possible),
>>> and the results/errors you are seeing.
>>>
>>> In general, I would try to get an initial queryset working and gathering
>>> the correct results first before looking at optimizations such as
>>&g
Hi,
Say that I have a model Train and it has a ManyToMany to model Seat. I'm
looking at a queryset of Train and I want to do a prefetch_related on it,
but I don't want to get all the Seat objects; I want only the first Seat
object for each Train object. Is this possible with prefetch_related
Hi guys,
Can someone please give me a list of default Django template tags that have
"mid-block" behavior like `else`? I mean tags where instead of simply
having a start tag and an end tag, you have an optional tag in the middle
that divides the whole thing to blocks.
I can think of:
if
Hi,
How do I control the admin ManyToManyField widget with the keyboard?
Thanks,
Ram.
--
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...
Hi everyone,
I understand that there's no way to get the intersection of two querysets
in Django. Whenever I need to get the intersection of two querysets, I need
to refactor my code to get pure Qs for those querysets and intersect those.
This can be annoying sometimes.
My question: Is there a
Hi guys,
I'm trying to optimize our Django testing workflow.
We have 7 different databases, and Django spends a lot of time on these
lines:
Creating test database for alias 'main_database'...
Creating test database for alias 'foo_database'...
Creating test database for alias 'bar_database'...
23 matches
Mail list logo