askbot.views.writers

synopsis:views diplaying and processing main content post forms

This module contains views that allow adding, editing, and deleting main textual content.

askbot.views.writers.answer(request, id)

view that posts new answer

anonymous users post into anonymous storage and redirected to login page

authenticated users post directly

askbot.views.writers.ask(request)

a view to ask a new question gives space for q title, body, tags and checkbox for to post as wiki

user can start posting a question anonymously but then must login/register in order for the question go be shown

askbot.views.writers.delete_comment(request)

ajax handler to delete comment

askbot.views.writers.edit_answer
askbot.views.writers.edit_comment(request, *args, **kwargs)
askbot.views.writers.edit_question

edit question view

askbot.views.writers.post_comments(request)
askbot.views.writers.retag_question

retag question view

askbot.views.writers.upload(request)

view that handles file upload via Ajax

This Page