Re: Django Friendly URLs

2012-08-25 Thread Amyth Arora
Good Work Jeff ! On Sun, Aug 26, 2012 at 11:47 AM, Jeff Tchang wrote: > Hey all. I've created a Django application that allows you to create > friendly/vanity urls: > https://github.com/tachang/django_friendlyurls > > There is still a lot to be desired but it gets the basic job done. It works > b

Django Friendly URLs

2012-08-25 Thread Jeff Tchang
Hey all. I've created a Django application that allows you to create friendly/vanity urls: https://github.com/tachang/django_friendlyurls There is still a lot to be desired but it gets the basic job done. It works by implementing a catch all URL string and then trying to figure out which view to r

Re: Django stickers

2012-08-25 Thread Russell Keith-Magee
Hi Frej, Unfortunately, there's no official Django merchandise store I can point you at. There are a couple of on-demand print shops that people have used to set up Django material, but they're not official, and we can't vouch for the quality of the printing. If anyone wants to set up a Django me

Saving the form containing checkboxes

2012-08-25 Thread Sandeep kaur
I want to have checkboxes in my form. For that I took the table field as ManyToManyField. When the template renders the form as its models, it correctly save the values in database, but when I create the form with same fields myself i templates, it does not save the values. I don't know where I a

Re: Django stickers

2012-08-25 Thread creecode
Hello Frej, On Saturday, August 25, 2012 7:12:42 AM UTC-7, Frej Connolly wrote: Where can I buy stickers with the Django logo? If you can't find some already made you could use Cafe Press to create your own from some of the artwork available on the internet. Toodle

Django stickers

2012-08-25 Thread Frej Connolly
Where can I buy stickers with the Django logo? -- 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/-/ktoVm6J0OXoJ. To post to this group, send email to django-us

Re: Django by Example: error with to do app; global name 'escape' is not defined

2012-08-25 Thread koiwai
Ah, thanks. Maybe it's time to start using eclipse. On Saturday, August 25, 2012 7:23:45 AM UTC+1, Tundebabzy wrote: > > I think you want to add this import statement: > from django.utils.html import escape > > On 8/24/12, koiwai > wrote: > > plus code > > > > def response_add(self, request,

Re: NoReverseMatch Error

2012-08-25 Thread Karen Tracey
On Sat, Aug 25, 2012 at 1:28 AM, Syam Palakurthy wrote: > Hi, Can you please elaborate on how to use this block in the template > code? I've tried adding this into my details template code in various > places and cannot get it to successfully work. Also, any > suggestions/examples you could poin

django-report-tools - feedback wanted!

2012-08-25 Thread Evan Brumley
Hi Everyone! A bit of backstory - I work in the environmental sector, mostly designing data-driven reporting apps in Django. Think along the lines of CO2 reporting, environmental audits, that sort of thing. Most projects tend to consist of a whole lot of CRUD, accompanied by a bunch of reportin

Re: Problem in Part2 of the tutorial "DoesNotExist at /admin/"

2012-08-25 Thread Maximiliano Mussuto
Thanks for this solution, in my case i guess this happend because i get an error when i was setting the values for the admin user at the project creation step. El miércoles, 18 de mayo de 2011 12:07:21 UTC-4, Ivan Galic escribió: > > Ok, I got it to work. > > Since the exception said " 'Site' m

Re: Not sure how to describe issue/behavior with Form -- so here's code & YouTube video

2012-08-25 Thread Sergiy Khohlov
super(NewsForm, self).__init__(*args, **kwargs) this one shouold be first string in the form constructor. not at the end. 2012/8/25 Barry Morrison : > Serge, > Thank you. > #92 is for the crispy form. > > The crispy-form is the actual form, but the form is using a WYSIWYG editor > http://re

Re: Column widths in TabularInline

2012-08-25 Thread Vikas Rawal
> In admin.py you can for example ... > > fieldsets = ( > (None, { > 'classes': ['myowncssclassname',], > 'fields': ( > 'field_abc', > 'field_xyz', > > ... and specify myowncssclassname in myextrastyle.css then finally > in the