DmitrMakeev commited on
Commit
09aff32
·
verified ·
1 Parent(s): 1b02027

Update ns_info.html

Browse files
Files changed (1) hide show
  1. ns_info.html +5 -7
ns_info.html CHANGED
@@ -111,7 +111,7 @@
111
  if (data.error) {
112
  resultDiv.innerHTML = `<p style="color: red;">Ошибка: ${data.error}</p>`;
113
  } else {
114
- displayResult(data);
115
  }
116
  })
117
  .catch(error => {
@@ -119,25 +119,23 @@
119
  });
120
  });
121
 
122
- function displayResult(data) {
123
  let tableHTML = `
124
  <table class="result-table">
125
  <thead>
126
  <tr>
127
  <th>list_id</th>
128
- <th>id_name</th>
129
- <th>id_phone</th>
130
  </tr>
131
  </thead>
132
  <tbody>
133
  `;
134
 
135
- data.forEach(item => {
136
  tableHTML += `
137
  <tr>
138
  <td>${item.list_id}</td>
139
- <td>${item.id_name}</td>
140
- <td>${item.id_phone}</td>
141
  </tr>
142
  `;
143
  });
 
111
  if (data.error) {
112
  resultDiv.innerHTML = `<p style="color: red;">Ошибка: ${data.error}</p>`;
113
  } else {
114
+ displayResult(data.collection);
115
  }
116
  })
117
  .catch(error => {
 
119
  });
120
  });
121
 
122
+ function displayResult(collection) {
123
  let tableHTML = `
124
  <table class="result-table">
125
  <thead>
126
  <tr>
127
  <th>list_id</th>
128
+ <th>title</th>
 
129
  </tr>
130
  </thead>
131
  <tbody>
132
  `;
133
 
134
+ collection.forEach(item => {
135
  tableHTML += `
136
  <tr>
137
  <td>${item.list_id}</td>
138
+ <td>${item.title}</td>
 
139
  </tr>
140
  `;
141
  });