Since Django does not accept Foreign Keys as a slug, I currently do not have slugs setup on my model, however, I do have the slug field in the model. To get my slugs quickly, I created a page listing all the issues and used {{ issue|slugify }} and have them sorted by ID (which is the same ID in my PostgreSQL tables). In PostgreSQL, I can sort the issue tables by ID as well.
So my question is how do I insert the news slugs into the database? ** I am not familiar with PostgreSQL so baby talk would be nice.
ForeignKeyFieldis simply an integer field in one table that contains the ID of a record in some other table. ASlugFieldis aCharFieldthat has some extra constraints/capabilities. The two are unrelated. I'll also observe that Django sites are not for the technologically challenged. You can get away with point-and-click with WordPress, but not Django.SlugFieldis a simpleCharField. I've outgrown Wordpress, btw, and I've been able to fare fine with Django so far since I've been using it the past two months. Dear god.