Ejemplo n.º 1
0
def ajax_other_conferences():
    """Handler for other conferences in the series"""
    recid = request.args.get('recid', '')
    seriesname = request.args.get('seriesname', '')

    html, total = render_conferences_in_the_same_series(recid, seriesname)
    return jsonify({"data": html, "total": total})
Ejemplo n.º 2
0
def ajax_other_conferences():
    """Handler for other conferences in the series"""
    recid = request.args.get('recid', '')
    seriesname = request.args.get('seriesname', '')

    html, total = render_conferences_in_the_same_series(recid, seriesname)
    return jsonify(
        {
            "data": html,
            "total": total
        }
    )