예제 #1
0
def interface_details():
    """Used for table refreshes"""

    int_details = GetInfo.more_int_details(netmiko_session,
                                           request.form.get('details'))

    return render_template('more_int_detials.html', details=int_details)
예제 #2
0
def interface_details():
    """Get interface details, CLI view"""

    return render_template('more_int_detials.html',
                           details=GetNetmiko.more_int_details(
                               netmiko_session, request.form.get('details')))