Hi all, I'm trying to setup a picture library website using django. What I
want to do is store the picture into the database directly and access the db
to show them in the html file when user view in the web. I have read some
documents and tutorial about the django but what I have learned is just
You can google it. I have read once, but forget the link address now.
2009/8/18 sjtirtha
> Hi,
>
> can some body share about his experience using Django and CouchDB?
> I found some python API that can be used to access CouchDB, which one is
> the best and suitable to Django Framework.
>
> Regard
Hi all,
I deployed a django app on my laptop, the whole environment is like this:
the OS is UBUNTU904, the web server is Apache, and the database is sqlite3.
The deployment is success, but when I try to write some data into the
database, I get the HTTP 500 error. And I check the error log, it
sh
much!
2009/10/22 bruno desthuilliers
>
> On 21 oct, 17:28, 邓超 wrote:
> > Hi all,
> > I deployed a django app on my laptop, the whole environment is like
> this:
> > the OS is UBUNTU904, the web server is Apache,
>
> If it's only for personal use on a sin
Hi all,
I'm writing a small app, and get an error when trying to update the
object, the error message is
'QuerySet' object has no attribute '_meta'. and It shows that I made
some mistake on this line:
form = ProjectForm(instance = projectInstance). But I don't know where
am I wrong. The below is
Hi DR,
Thank you very much! It works now. I will check the doc about the
difference of the queryset and instance. Anyway, thanks a lot!
2009/12/1 Daniel Roseman
> On Dec 1, 3:24 pm, 邓超 wrote:
> > Hi all,
> > I'm writing a small app, and get an error when trying to u
Hi all,
I want to change below function to use the generic view function
update_object:
@login_required
def edit_bug_page(request, bug_id = None):
if bug_id == None:
bugInstance = Bug()
else:
bugInstance = get_object_or_404(Bug, pk = bug_id)
members = bugInstance.
Anyone? Please...
2009/12/7 一千瓦的刀狼
> Hello? Anyone can help me?
>
> On Dec 6, 9:18 am, 邓超 wrote:
> > Hi all,
> > I want to change below function to use the generic view function
> > update_object:
> >
> > @login_required
> > def edit_bug_pa
As I know Django can not save binary data with it's default orm, you can try
to select another orm like sqlalchemy, or you can try to
modify the orm to make it can save binary data.
2009/12/21 Markus T.
> Hi,
>
> I'm trying to save binary POST data to an ImageFile field - so far
> with no satisf
Try to make a loop in the template, I guess that may can work
2010/1/5 Delacroy Systems
> This is how I did it in views.py:
>
> def businessshowservice_view(request, business_id):
>business = Business.objects.get(pk=business_id)
>services = Business.objects.get(pk=business_id).service_se
If you use django's orm, maybe you can check their document at its website.
2010/1/6 Geobase Isoscale
> Hi all,
>
> I have a Django extension that enables me to call predefined PostgreSQL
> functions from the database. I would like to know how to display on the
> browser the error message gotte
register the class to the admin, you can find it in the source code. And you
can download the source code at apress website.
2010/2/4 neridaj
> I'm following along James Bennett's tutorials and when I save an entry
> as a draft it doesn't show up in the admin interface for further
> editing. Whe
I suggest learn django first
2011/9/17 Alec Taylor
> Good afternoon,
>
> I plan on using Pinax for a project I'm doing (releasing project under
> New BSD or similar).
>
> My Learning Plan is as follows:
> 1. https://docs.djangoproject.com/en/dev//intro/tutorial01/
> https://docs.djangoproject.co
13 matches
Mail list logo