What happens if you switch pagination off?
On Mon, Apr 19, 2010 at 19:29, Ariel wrote:
> Hi everybody:
> I have a big problem with pagination using apache solr and haystack, this is
> what it is happening: I have a site where the news are being indexing with
> haystack and solr, but the problem
Also there are the archives from the conferences. There is more to
wade through to find introductory material, but the talks are
excellent nonetheless:
http://djangocon.blip.tv/posts?view=archive&nsfw=dc
http://pycon.blip.tv/posts?view=archive&nsfw=dc
Thomas
On Tue, Apr 20, 2010 at 13:41, Adnan S
On Apr 20, 3:36 pm, Russell Keith-Magee
wrote:
> Obviously this isn't an isolated problem - I'll see what I can do
> about changing the advice on the community page so that Jacob's inbox
> doesn't become a bottleneck.
>
> Yours,
> Russ Magee %-)
Without wishing to pile on, I'm in exactly the same
On Wed, Apr 21, 2010 at 4:28 PM, Daniel Roseman wrote:
> On Apr 20, 3:36 pm, Russell Keith-Magee
> wrote:
>> Obviously this isn't an isolated problem - I'll see what I can do
>> about changing the advice on the community page so that Jacob's inbox
>> doesn't become a bottleneck.
>>
>> Yours,
>> R
I found nowhere information about compliancy of South 0.7.1 to the
multiDB support of django 1.2
Did I overlook anything?
--
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 uns
How many results are returned when you search using the solr admin
interface?
Are you using the code that I posted for you previously?
Ray
On Apr 19, 6:29 pm, Ariel wrote:
> Hi everybody:
> I have a big problem with pagination using apache solr and haystack, this is
> what it is happening: I ha
On Wed, Apr 21, 2010 at 3:08 AM, Sven Svenson wrote:
> I'm new to the Django world but it seems that FastCGI is not the
> preferred way to deploy a Django application. Why is that? I've had
> good success using FastCGI with Perl/Catalyst-based applications.
>
> Thanks.
>
> /sven
>
We use FastCGI
On Apr 21, 7:08 am, Lachlan Musicman wrote:
> Hola,
>
> I'm having trouble getting a subclass to trigger an isinstance(). Code below:
>
> model.py excerpt:
>
> from django.db import models
> from django.forms import ModelForm
>
> class Author(models.Model):
> first = models.CharFiel
I am developing a web site that has some of its models in a private
database (the one specified in settings.py, populated by the admin
interface) but, it has to fetch and filter (etc) data from 2 different
databases that are populated (data is added but never modified or
deleted) in real-time by ex
On 21/04/10 11:21, Massimiliano della Rovere wrote:
I am developing a web site that has some of its models in a private
database (the one specified in settings.py, populated by the admin
interface) but, it has to fetch and filter (etc) data from 2 different
databases
So what is you opinion, sh
On Apr 21, 2010, at 4:35 AM, Massimiliano della Rovere wrote:
> I found nowhere information about compliancy of South 0.7.1 to the
> multiDB support of django 1.2
>
> Did I overlook anything?
>
If by "overlook" you mean "not read the release notes," then yes.
http://south.aeracode.org/docs/re
2010/4/20 cootetom :
> django and and pisa are great for creating PDF's because you can
> combine django's templating engine with pisa's HTML to PDF conversion.
> Pisa uses the reportlab tool kit. http://pypi.python.org/pypi/pisa/
I think I can't use PISA because I need the pdf to be precise as
pi
Hallöchen!
Daniel Roseman writes:
> [...]
>
> This is the expected behaviour. You've asked for an Author object,
> so that's what you've got. There's no way to tell from the Author
> model that this particular instance of it is also an instance of
> Translator.
More and more I get the impression
Hiya
I have exactly the same problem as described here.
Did you (or anyone) find a fix or workaround for this?
Cheers!
Nick.
On Apr 14, 12:24 pm, Paweł Roman wrote:
> > I suspect it is trying to import Http but can't.
>
> > Fire up python (Start -> Python Interactive Shell, or Start -> Run -
import os
import sys
sys.path.append( '/Library/WebServer/Documents/')
sys.path.append( '/Library/WebServer/Documents/ess/')
print >> sys.stderr, sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'ess.settings'
from django.core.handlers.wsgi import WSGIHandler
application = WSGIHandler()
On Apr
I am using python-twitter on my site. I have a problem when the
Twitter site is down. This results in an error message. I did not
found out if the users gets an error message or not. To use Twitter on
my site I have this context_processors.py
import datetime
import time
from django.conf import set
Why should an author instance ever return True for
isinsnace(author_instance, Translator). That's not really the way
Python or Django are designed to work.
Why not just check to see if the author instance has an associated
translator instance? That's the proper way. See the docs on multi-
table in
Hallöchen!
Tim Shaffer writes:
> Why should an author instance ever return True for
> isinsnace(author_instance, Translator). That's not really the way
> Python or Django are designed to work.
Yes, but normally, you have tools like type(instance) or
instance.__class__. However, in Django, you d
On Apr 21, 8:25 am, Torsten Bronger
wrote:
> Yes, but normally, you have tools like type(instance) or
> instance.__class__. However, in Django, you don't. That's the
> problem.
Sure you do...
>>> from website.blog.models import Entry
>>> e = Entry.objects.all()[0]
>>> e.__class__
>>> type(e)
My deadline is 26th, May
Anyway the program will constantly grow so, yes I've just finished
adding some modifications to make it run on Dj1.2
On Wed, Apr 21, 2010 at 12:49, David De La Harpe Golden
wrote:
> On 21/04/10 11:21, Massimiliano della Rovere wrote:
>>
>> I am developing a web site that
On Wed, Apr 21, 2010 at 2:15 PM, Tim Shaffer wrote:
> On Apr 21, 8:25 am, Torsten Bronger
> wrote:
>> calls the method of the respective class of "instance". However, in
>> Django,
>>
>> for instance in RootClass.objects.all():
>> instance.do_something()
>>
>> will *always* call RootClass.do
On Apr 21, 1:14 pm, Alessandro Ronchi
wrote:
> 2010/4/20 cootetom :
>
> > django and and pisa are great for creating PDF's because you can
> > combine django's templating engine with pisa's HTML to PDF conversion.
> > Pisa uses the reportlab tool kit.http://pypi.python.org/pypi/pisa/
>
> I think I
On Apr 20, 10:48 pm, When ideas fail
wrote:
> If i have an admin form and want to transform some data to another
> format using AJAX within the form, what is the best way to do this. In
> a normal form I can do this within the view but is there any way to
> extend admin views to add new functional
On Apr 21, 9:28 am, Tom Evans wrote:
> On Wed, Apr 21, 2010 at 2:15 PM, Tim Shaffer wrote:
> > On Apr 21, 8:25 am, Torsten Bronger
> > wrote:
> >> calls the method of the respective class of "instance". However, in
> >> Django,
>
> >> for instance in RootClass.objects.all():
> >> instance.d
On Apr 20, 4:09 pm, darren wrote:
> I am not able to figure out how to order the records that fill the
> drop down list in a model form. On line 112 below, I have attempted
> to order the Rotation model by player. But, the drop down list that
> is created for me is not ordered that way. I also
On Apr 20, 1:31 pm, Huang Stanley wrote:
> Hi all:
>
> I try to find all fields but only IPAddressField is char data type,
> but it's a fix-length char data type for 15 characters.
>
> Is there any field that I can use for this purpose.
>
> PS. I use django 1.2 beta 1 on Ubuntu.
>
> Thanks for you
Finally, I find out that I can create my own datatype! (I use Django 1.2
beta 1.)
in models.py:
from django.db import models
from django.db.models import *
from django.utils.translation import ugettext_lazy as _
class myCharField(Field):
def __init__(self, *args, **kwargs):
self.max_
On Wed, Apr 21, 2010 at 2:35 PM, Tim Shaffer wrote:
> On Apr 21, 9:28 am, Tom Evans wrote:
>> On Wed, Apr 21, 2010 at 2:15 PM, Tim Shaffer wrote:
>> > On Apr 21, 8:25 am, Torsten Bronger
>> > wrote:
>> >> calls the method of the respective class of "instance". However, in
>> >> Django,
>>
>> >
Hallöchen!
Tim Shaffer writes:
> [...]
>
a = Author(first="Tim", last="Shaffer")
a.translator = Translator(language="English")
a.editor = Editor(language="German")
>
t = Translator.objects.all()[0]
>
> This works as I would expect it to...
>
a.do_something()
> "I'm going
Thanks for the great suggestions. I believe that we will start out with
shared hosting the migrate to a VPS (e.g. SliceHost) if scaling becomes an
issue. We're not really expecting to become a high-traffic website (our
target audience is small).
I'm not familiar with any of these approaches, but
You are right though. In my experience, using Pisa to do HTML to PDF
conversion isn't pixel perfect.
On Apr 21, 2:29 pm, derek wrote:
> On Apr 21, 1:14 pm, Alessandro Ronchi
> wrote:
>
>
>
>
>
> > 2010/4/20 cootetom :
>
> > > django and and pisa are great for creating PDF's because you can
>
Hi guys,
This is driving me a little crazy, so I hope someone can offer good
advice. I've specified an inline class in my admin.py file, and in it
I have specified a subset of the classes attributes with
list_display. However, what I set in list_display has no effect on
what is rendered for the i
I've been doing generating complex catalogs and books from django by
using TeX or LaTex. Generating PDF from scratch is a pig. Its not
much different from programming in postscript. Latex or Tex make life
very easy and are very expressive. They are available on all
platforms. I've been using TeX/L
Hi there,
I am adding a new app to django project and I thought about inheriting
pretty much everything I can, so I did:
from ccpngrid.models import GridJobForm
from acpype.models import AcpypeJob
class IsdJob(AcpypeJob):
pass
class IsdJobForm(GridJobForm):
pass
To my (bad) surprise,
hi,
I think that what i am trying to do is NOT doable with django existing
authentication or authority tools. Before developing my own code i
thought of sharing it with the django community.
I have a model called 'Layers'. I want a new permission to be created
for each new entry in that table. Th
You may want to use an abstract base class. If you're inheriting something from
another application then they're probably not defined in that way, although it
might be possible to subclass them as abstract in your own models.py and then
subclass those. But the ORM nicely hides all of this from y
This can easily be done with signals.
http://docs.djangoproject.com/en/1.1/topics/signals/
And, it (rightly) won't be done in the view, because that leaves open the very
likely chance of a problem if someone writes a new view and forgets to call
your extra code.
The only sticky problem at the
I think then you will run into a problem with you add another media
type:
class WAVMedia(Media):
file = models.CharField()
def play(self):
# do stuff
>>> m = Media()
>>> m.wavmedia = WAVMedia()
>>> m.mp3media = MP3Media()
>>> playlist = Playlist
>>> playlist.media_set.append(m)
for media
Sorry, "class MP3Media(object):" should have been class
"MP3Media(Media):"
--
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 group, send email to
django-
Django Nav (http://code.google.com/p/django-nav/) extensible, non
intrusive, fast system for generation navigation groupings.
New in this release:
Conditionals to show hide a nav option based on the result of a
function call. There are 3 included conditionals to use as examples.
arg and kwarg pas
Hey everyone, thanks for looking.
I'm overriding a model save(), and was wondering if there is an
instance of the model being passed in that i can access.
My situation is that i have a title and a slug. I only want to change
the slug when the title is changed. So in my save i want to check:
if s
Hallöchen!
Tim Shaffer writes:
> [...]
>
> I think in both these cases (there is no person actually an
> instance of "Person", and there should be no actual instance of
> "Media"), it would be best to mark the parent class abstract and
> use a generic relation (like you said) to join to either MP
One way:
Override __init__ and setting self.old_title to be self.title.
Then, in your save(), you can see if self.title != self.old_title.
Shawn
--
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...
MediGrail.com LLC is seeking a Django developer to work in the Indivo
X (IndivoHealth.org ) environment. Any language that supports oAuth
and REST can be used - Python, PHP, Ruby.
LEVEL
This is a low-to-mid level developer position. Please respond with
your experience, per hour expectation and ava
On Wed, Apr 21, 2010 at 5:09 PM, Tim Shaffer wrote:
> I think then you will run into a problem with you add another media
> type:
>
> class WAVMedia(Media):
> file = models.CharField()
> def play(self):
> # do stuff
>
m = Media()
m.wavmedia = WAVMedia()
m.mp3media = MP3Media()
On Wed, Apr 21, 2010 at 5:38 PM, Torsten Bronger
wrote:
> I think Django should store the fully qualified class name of each
> row in the parent table. For example, the "Person" table would have
> a column with entries like "myapp.Author" or "myapp.Translator".
> Then, a find_actual_instance meth
Thank you, that seems like a clean way to do it. I'm getting a weird
error when overriding init though. When I simply do this:
class Entry(models.Model):
title = models.CharField(max_length=255)
slug = models.SlugField(max_length=255)
body = models.TextField()
user
I tried for a while, and finally switched to Apache on Windows. It
works great and easy to set up.
On Apr 21, 6:29 am, Nick wrote:
> Hiya
>
> I have exactly the same problem as described here.
>
> Did you (or anyone) find a fix or workaround for this?
>
> Cheers!
> Nick.
>
> On Apr 14, 12:24 pm,
You should probably call that super __init__ first thing. Otherwise the object
won't really know how to behave like a Django model.
Shawn
--
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...@googleg
Yes, but my problem is its defined in contrib.auth.User with no
length, which I assume defaults to 60. Facebook proxy email address
can be 90 characters long.
On Apr 20, 11:03 am, "ge...@aquarianhouse.com"
wrote:
> did you try:
>
> email = models.EmailField(max_length=60)
>
> On Apr 20, 5:00 pm,C
Ahh, that'll do it. I'm used to the save() where you call super last.
Works perfect, thanks for the solution!
On Apr 21, 1:19 pm, Shawn Milochik wrote:
> You should probably call that super __init__ first thing. Otherwise the
> object won't really know how to behave like a Django model.
>
> Shaw
Hallöchen!
Tom Evans writes:
> On Wed, Apr 21, 2010 at 5:38 PM, Torsten Bronger
> wrote:
>
>> I think Django should store the fully qualified class name of
>> each row in the parent table. For example, the "Person" table
>> would have a column with entries like "myapp.Author" or
>> "myapp.Trans
On Apr 21, 3:20 pm, Brad Pitcher wrote:
> Hi guys,
> This is driving me a little crazy, so I hope someone can offer good
> advice. I've specified an inline class in my admin.py file, and in it
> I have specified a subset of the classes attributes with
> list_display. However, what I set in list
I solved it making this context_processor.py:
import datetime
import time
from django.conf import settings
from django.core.cache import cache
import twitter
def latest_tweet( request ):
tweet = cache.get( 'tweet' )
if tweet:
return {"tweet": tweet}
else:
As you probably have found out by now, since you're using 1.1, just
creat the templates
feed/_description.html
as mentioned in the docs for version 1.1:
http://docs.djangoproject.com/en/1.1/ref/contrib/syndication/
On Wed, Apr 14, 2010 at 5:44 PM, Ronnie Betzen wrote:
>> Have you tried the obv
Hi
I think I've found a bug in django.template.defaulttags.py
get_nodes_by_type() is not implemented for IfEqualNode class. It seems
like it should be implemented the same way as in IfNode.
Check out this simple test:
def test_get_nodes_by_type(self):
template_string1 = "{%ifequal x
On Wed, Apr 21, 2010 at 6:22 PM, CrabbyPete wrote:
> Yes, but my problem is its defined in contrib.auth.User with no
> length, which I assume defaults to 60. Facebook proxy email address
> can be 90 characters long.
>
http://lmgtfy.com/?q=django+auth.User+email+truncating&l=1
Funnily, the OP the
Hi
I'm migrating a django1.1 project from MySQL to Oracle xe.
I've created fixtures in MySQL and I'm trying to load them to Oracle.
When Trying to load the fixtures I'm getting:
IntegrityError: ORA-1: unique constraint (USER.SYS_C004253)
select TABLE_NAME, COLUMN_NAME from user_cons_columns w
On Wed, Apr 21, 2010 at 6:59 PM, Torsten Bronger
wrote:
> But I think that it's not too expensive if by default Django stored
> both the PK and the actual model name in the parent table.
> Additionally, find_actual_instance should be built-in based on this
> additional column.
>
> After all, I've
When I'm creating the fixtures without contenttypes and auth and loading the
fixtures in Oracle I'm not getting an error
but nothing is being loaded:
python manage.py dumpdata --exclude=contenttypes --exclude=auth >
fixture.json
On Wed, Apr 21, 2010 at 9:24 PM, pablo platt wrote:
> Hi
>
> I'm m
On Wed, Apr 21, 2010 at 7:24 PM, pablo platt wrote:
> Hi
>
> I'm migrating a django1.1 project from MySQL to Oracle xe.
> I've created fixtures in MySQL and I'm trying to load them to Oracle.
> When Trying to load the fixtures I'm getting:
> IntegrityError: ORA-1: unique constraint (USER.SYS_C
I think i ran into this issue before. I don't think they define a
max_length anywhere, the restriction is just on the database. Just
increase the field size in the database and you should be good.
On Apr 21, 2:20 pm, Tom Evans wrote:
> On Wed, Apr 21, 2010 at 6:22 PM, CrabbyPete wrote:
> > Yes,
Following your advice I did the following:
1. dumpdata while connected to MySQL:
python manage.py dumpdata > fixture.json
2. Created a new Oracle user with an empty schema and switch the db
connection to Oracle (didn't do syncdb)
3. loaddata to Oracle with:
python manage.py loaddata fixture.json
I
On Wed, Apr 21, 2010 at 2:09 PM, Paweł Roman wrote:
> I think I've found a bug in django.template.defaulttags.py
>
> get_nodes_by_type() is not implemented for IfEqualNode class. It seems
> like it should be implemented the same way as in IfNode.
>
> [snip]
> I'm almost sure this missing implement
Thank you for setting me straight. What a dumb mistake. :)
On Apr 21, 11:03 am, Daniel Roseman wrote:
> On Apr 21, 3:20 pm, Brad Pitcher wrote:
>
> > Hi guys,
> > This is driving me a little crazy, so I hope someone can offer good
> > advice. I've specified an inline class in my admin.py fil
> 1.2 does not exist yet so I'm not sure what you mean when you say you
> checked there. Current SVN is certainly different from 1.0 and 1.1 in this
> area, see changeset 12654:
>
> http://code.djangoproject.com/changeset/12654
>
> Does that change fix the problem you are referring to here?
Yup.
I need to give the user some jpg previews of the results. What's the
lightest way to do that? I think reportlab or tex/latex are my only
choices.
I made my university thesis on latex, and I remember some problems
with encoding (solved, finally, with utf8) and graphics to include.
I really don't
I'm deploying my first django app. I'm familiar with nginx and fastcgi's.
Currently I get a 404 page regardless of the url and for some reason a
double slash
For http://www.site.com/admin/
Page not found (404)
Request Method: GET
Request URL: http://www.site.com/admin//
My urls.py from the de
I'm just getting started with django coming from a background of
developing desktop apps on *nix. Is there something equivalent to a GUI
builder for django?
Alternatively, is there a good WYSIWYG html editor that produces
editable html so I could quickly create a template and then retrofit it
Or I do something bad, I was searching in google and some pepople have
same/similar error without replies, can you help me, this is my error:
Caught an exception while rendering: Reverse for
'coltrane_category_list' with arguments '()' and keyword arguments
'{}' not found.
If you need more info,
I am working on a form that takes a little data and throws it in a
database, but before all that jazz it sends an email to a list/tuple
of recipients. This is going very well except the send_mail process is
raising a very annoying and persistent error:
"to" argument must be a list or tuple
Here i
No, and it's not a good idea to do WYSIWYG development for HTML. HTML is not
a format that produces static content; it varies depending on screen fonts,
browser, and platform, and getting that right means sticking to relative
layout, making content flow, and taking care of quirks. WYSIWYG editors
d
I ask this question knowing that it's almost anti-django template
patterns, but I ask after spending the last few hours trying to figure a
way to shoe horn this functionality in. The basic idea is that I would
like to say something like this:
{% extends "base.html" %}
{% block content %}
{%
Does everyone code the html and css by hand for their templates? That
seems very time consuming and tedious.
Desktop apps have the same issues with variations of languages, fonts,
etc. and resizing and the layout containers and other widgets provide
for dynamic changes. GUI builders make it ea
On Wed, Apr 21, 2010 at 5:52 PM, John Finlay wrote:
> Does everyone code the html and css by hand for their templates? That seems
> very time consuming and tedious.
every developer i know does.
> Desktop apps have the same issues with variations of languages, fonts, etc.
> and resizing and the l
On Apr 22, 12:10 am, Brad Buran wrote:
> Thanks for the great suggestions. I believe that we will start out with
> shared hosting the migrate to a VPS (e.g. SliceHost) if scaling becomes an
> issue. We're not really expecting to become a high-traffic website (our
> target audience is small).
>
On Wed, Apr 21, 2010 at 6:09 PM, Nick wrote:
> I am working on a form that takes a little data and throws it in a
> database, but before all that jazz it sends an email to a list/tuple
> of recipients. This is going very well except the send_mail process is
> raising a very annoying and persisten
Can you put the whole script tag in a block?
= template.html =
{% block extra-js %}
{% endblock %}
= base.html =
{% block extra-js %}{% endblock %}
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django
On 22/04/2010 8:10am, andres osinski wrote:
No, and it's not a good idea to do WYSIWYG development for HTML. HTML is
not a format that produces static content; it varies depending on screen
fonts, browser, and platform, and getting that right means sticking to
relative layout, making content flow
I'm doing that in a few other place (setting the page title, for
example). The problem is that I would like to have the extended inside
of a block and potentially conditionally (e.g. only include this
JavaScript if you're not logged in).
--koblas
On 4/21/10 4:29 PM, Tim Shaffer wrote:
Can y
You should be able to do both those with the block tag, unless I'm
misunderstanding something, or you have some other requirement.
{% extends "base.html" %}
{% block content %}
{% block extra-js %}
{% if user.is_authenticated %}
{% endif %}
{% endblock %}
... more block content ...
{% endblock %
Hi,
i'm new to django and i've met with some problems when i'm trying to
display custom fields in the change user admin page. Hope some of u
can help me out.
1) I've a country table which is linked the user profile table that i
created as below.
--
Thanks, Karen. Looks like I was a little cart before the horse on this
portion of the project.
On Apr 21, 6:28 pm, Karen Tracey wrote:
> On Wed, Apr 21, 2010 at 6:09 PM, Nick wrote:
> > I am working on a form that takes a little data and throws it in a
> > database, but before all that jazz it s
On Wed, Apr 21, 2010 at 10:20 PM, Jx wrote:
> [snip]
> When i view the change user page, my country field is displayed as a
> drop down box as intended, but the contents of the drop down box is
> the "Country Object" instead of my intention to display the name of
> the country.
>
>
Your Country m
Thanks Tracey! it works :)
yea actually i did the tutorial, i cant believe i missed out that
part. Looks like i need more brushing up.
On Apr 22, 10:36 am, Karen Tracey wrote:
> On Wed, Apr 21, 2010 at 10:20 PM, Jx wrote:
> > [snip]
> > When i view the change user page, my country field is dis
For anyone else who learned about DKIM recently [1], I've uploaded a
snippet for a DKIM-signing email backend [2].
[1]
http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-through-code.html
[2] http://www.djangosnippets.org/snippets/1995/
--
You received this message because
On Wed, Apr 21, 2010 at 19:33, Daniel Roseman wrote:
>>
>> Any tips?
>
> This is the expected behaviour. You've asked for an Author object, so
> that's what you've got. There's no way to tell from the Author model
> that this particular instance of it is also an instance of Translator.
I presume
In django's modelManager
I use oracle do bitwise operator,like:
select * from MultiRoom m where bitand(m.groupidx,tem ) <> 0
and Now I want to change it to use django's orm ?
anyone know how to write?
Thanks
--
You received this message because you are subscribed to the Google Groups
"Django
I've been working for a startup for a month or so. The main guy is
enthusiastic about technology. He probably runs more applications on his
computer than anyone I know. He also switched from a Windows background to
a Mac notebook a year ago. He doesn't know a lot about web development or
how it
On Apr 22, 2010, at 12:40 AM, Joe Goldthwaite wrote:
> I’d like examples of large systems written in Django or other open source
> frameworks. I’d also like stories about companies who tried .net switched
> over to open source. It seems like there was a big Microsoft project on some
> stock
How to set the sucess message after inserting values to db in django admin
site
like message department added sucessfully
model:
class mdldepartments(models.Model):
class Meta:
verbose_name_plural = "Departments"
verbose_name = "Department"
property = models.ForeignKey(md
91 matches
Mail list logo