Will list-group be reloaded into the faceplate after being pressed?

whenever I press Router, it will extract the ip, of the relevant router from the database and put it in the list-group on the right

clipboard.png

list-group ?
clipboard.png

< hr >
def getdata(request):
    qd = request.GET["ic-element-id"]
    print (qd)
    device_list = devicelist_detail.objects.filter(device_type=qd)
    result1 = device_list.values("ip_address")
    result1_list = []
    for i in result1:
        result1_list.append([i["ip_address"]])
    return render(request, "devicelist.html", {"result1_list": result1_list})


MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30555-2bd0b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30555-2bd0b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?