Re: url name to generic class-based views with parameters?

2012-01-18 Thread Mark Stahler
Aha, thanks guys. Very simple now that it was pointed out. -- 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 email to django-users+unsubscr..

url name to generic class-based views with parameters?

2012-01-18 Thread Mark Stahler
Can someone explain how to link using url names to class-based views that include parameters? Example: url(r'^video/(?P\d+)/$', VideoView.as_view()), works but all my links have to manually have "/video/{{ video.id }}/" or similar. I cannot get {% url videos %}{{ video.id }} to work with the fol

Professional forum software that integrates with Django

2011-12-22 Thread Mark Stahler
Does any one know of a professional forum package, commercial or open source like vBulletin, phpBB or similar that easily integrates with Django's authentication system? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: If your on Dreamhost, vote for Django support

2009-10-28 Thread Mark Stahler
Good Luck. I have a Dreamhost account for my blog (Tried a dreamhost vps for a week and a half) and now I have a Linode slice for my Django/ Rails stuff. Quasi-democratic system as in you have the illusion of some kind of voice. On Oct 28, 1:17 am, Richard Jeong wrote: > Thanks to Daniels help,

Single Django Project, Multiple Apache Subdomains

2009-08-24 Thread Mark Stahler
I am using Nginx as a front end web server redirecting Python requests to Apache + mod_wsgi. Everything with that is working fine. I have one Django project running and I want to setup subdomains for a few of my project apps. Proposed structure: /www/project/ - -->/admin/ - admin.domain.com --

Admin Panel: Restrict ForeignKey selections via permissions

2009-08-12 Thread Mark Stahler
Can someone point me in the direction to best solve this problem. It would easier to show you: class Profile(models.Model): status = models.ForeignKey(Status) ... class Status(models.Model): status_name = models.CharField(max_length=50) ... I need to be able to restrict the se