Beispiel #1
0
def show_action(request, id):
    action = Action.get_by_id(id)
    if action is None:
        return redirect('/news/')
    return render_to_response('news/show_action.html', {'action':action})