示例#1
0
def ajax_conference_contributions():
    """Handler for other conference contributions"""
    cnum = request.args.get('cnum', '')

    html, total = render_conferences_contributions(cnum)

    return jsonify({"data": html, "total": total})
示例#2
0
def ajax_conference_contributions():
    """Handler for other conference contributions"""
    cnum = request.args.get('cnum', '')

    html, total = render_conferences_contributions(cnum)

    return jsonify(
        {
            "data": html,
            "total": total
        }
    )