Integrating Forums in Django - django

I am pretty new to the coding world and django, I am pretty far along within a site and I would like to add a forum function
does anyone have suggestions, I am currently using 1.8.2
I was able to get spirit working on its own, but could not figure out how to integrate it. I also tried djangobb, but the same as spirit.
any help would be great

You should check Pybbm. It is fully documented and easy to customize.

Related

Django API Rest Framework

this is - don't slap me in the face - a beginner question.
I have some knowledge in Python and Django, but it is not too overwhelming. I have a very appealing business idea in my head and I made it a challange to see if I can get the nessesary skills to make it come to life.
Long story short, somewhere along the road I want to be able to build an IOS and Android App (or bring someone in who can do it). I also need a homepage for this (Django is a good enough solution for this - this much I know).
As far as I unserstand it, I can use the rest API Framework to connect Apps with the Django Backend. Is this a good solution? Or would you recommend another way to realise this projekt?
Speed would be impartant for the final solution. Also I need good scalability, though, I don't plan to recreate Facbook.
Django REST Framework is brilliant, and the documentation is really helpful (http://www.django-rest-framework.org/), takes a little while to get used to but with django experience its very simple. There is also a short video tutorial(4 videos) by a guy called thenewboston https://www.youtube.com/watch?v=Yw7gETuRKjw which will help get you started.
Hope this helps, good luck with the business adventure

Django + OpenLayers?

Can anyone point me to a good tutorial on how to use Django or GeoDjango with OpenLayers. I can't seems to find a good tutorial. I'm a beginner in both and haven't used these before. I just need to get a website with maps up and running really fast. So if someone can just tell me how to display a map on a django website I'd be really grateful!!
Thanks in advance!
I'm still learning how to work with both, but here's a small overview which might help clarify some things: link
You'll want a way to pass data from Django to OpenLayers in a format that OpenLayers can understand. After that, you can use OpenLayers library to manipulate that data.
Here are some examples: http://openlayers.org/en/master/examples/

guide to translating django application (OSQA)?

I want to translate OSQA into my native language, but I'm a total newbie to Django.
I've seen that there are other questions here on SO relating 0SQA. (especially this one)
So if anyone could guide me how to accomplish this task. (I’ve done research before posting question here, but I didn’t find anything understandable)
Thank you for any answers, suggestions, tips.
You can install the rosetta package. Here are more informations and a simple step by step installation. http://meta.osqa.net/questions/11183/where-do-i-find-italian-rosetta-language-pack

Please help my learning in Django

Hi All I am new on Django and python.I want to wirte program with Django .So please share me useful ideas and concept.How can I set up djanog in my window OS.
I little confuse and occur some errors while I read ebooks.
Share me with all experiences please in step by step.
Thank for all
http://www.djangobook.com is your friend. Free, well written and generally ace.
First, if you're new in python read dive into python, you must use python 2.5 or 2.6 not 3 (for django at least)
For windows here's a good tutorial. Then read the djangobook
For further information you can read Pro Django
And remember the oficial docs is very well written.
This may help you to start
This is great resource for you Getting Started with Django
Enjoy.
The first thing you should do is get yourself a project, it can be anything. The classic django-learning project is a blog.
Python is fairly easy to learn once you have some programming experience. I recommend that you go through the official tutorial. This google class also looks pretty good. You don't need to know the standard library all that much -- just enough python to find your way around whenever you need something. I'd say you can pick up python in a few afternoons of work.
After that, go through the django tutotial to get an idea of how to get started. Then start with your project using the docs which are quite good. They also contain an overview and installation section which may be handy. After you've gotten your feet wet, read the django book and then go fix all the things that could be better about your project.
Just like with any kind of programming, the key is to be constantly practicing and improving your code.

How to best integrate Flex and Django?

I'm building a site with a Flex frontend and Django backend.
The problem I'm facing is that it's tedious to write a CRUD frontend for every model.
I've checked out django-rest-interface but it is not obvious on how to do anything other than read/GET (i.e. create/POST, update/PUT, delete/DELETE) and couldn't find any related examples.
The usual answer I get on asking this question is "Use AMF" but what I am trying to learn is how to actually do the interfacing, not the protocol format.
So, bottom line, what are the best practices and simplest ways to integrate Flex and Django?
#Matt Briggs, The DjangoAMF tutorial wasn't clear enough and I was unable to make headway there.
I've finally gotten hold of how to use PyAMF and so far, so good.
Asked a buddy who is doing just that, he said he uses the DjangoAMF library