@@ -41,8 +41,8 @@ <h2 class="container__title" id="asn">
4141 < div class ="tab__item " target ="connectivity ">
4242 Connectivity
4343 </ div >
44- < div class ="tab__item " target ="measurements ">
45- Measurements
44+ < div class ="tab__item " target ="activity ">
45+ Activity
4646 </ div >
4747 < div class ="tab__item " target ="whois ">
4848 Whois
@@ -184,12 +184,71 @@ <h2 class="container__title" id="asn">
184184 </ div >
185185 </ div >
186186 < div class ="content__panel " id ="prefixes " aria-labelledby ="tab-prefixes ">
187- Tab Panel 2
187+ < div class ="panel__content ">
188+ < div class ="content__tables ">
189+ < cds-table class ="tables__item tables__item--span-16-columns cds-theme-zone-white " with-header ="true ">
190+ < cds-table-header-title slot ="title " style ="font-size: 1rem; margin-bottom: 0.5rem; ">
191+ Aggregates
192+ </ cds-table-header-title >
193+ < cds-table-header-description slot ="description " style ="font-weight: 250; font-size: 1rem; margin-bottom: -0.5rem; ">
194+ All prefixes advertised by this ASN
195+ </ cds-table-header-description >
196+ < cds-table-head >
197+ < cds-table-header-row >
198+ < cds-table-header-cell > Prefix</ cds-table-header-cell >
199+ </ cds-table-header-row >
200+ </ cds-table-head >
201+ < cds-table-body >
202+ {% for prefix in prefixes_aggregates %}
203+ < cds-table-row >
204+ < cds-table-cell > {{ prefix }}</ cds-table-cell >
205+ </ cds-table-row >
206+ {% endfor %}
207+ </ cds-table-body >
208+ </ cds-table >
209+
210+ < cds-table class ="tables__item tables__item--span-16-columns cds-theme-zone-white " with-header ="true ">
211+ < cds-table-header-title slot ="title " style ="font-size: 1rem; margin-bottom: 0.5rem; ">
212+ Advertised Prefixes
213+ </ cds-table-header-title >
214+ < cds-table-header-description slot ="description " style ="font-weight: 250; font-size: 1rem; margin-bottom: -0.5rem; ">
215+ All prefixes advertised by this ASN, including multiple entries from IRR databases
216+ </ cds-table-header-description >
217+ < cds-table-toolbar slot ="toolbar ">
218+ < cds-table-toolbar-content ?has-batch-actions ="true ">
219+ < cds-table-toolbar-search placeholder ="Filter prefixes " expanded > </ cds-table-toolbar-search >
220+ </ cds-table-toolbar-content >
221+ </ cds-table-toolbar >
222+ < cds-table-head >
223+ < cds-table-header-row >
224+ < cds-table-header-cell > Prefix</ cds-table-header-cell >
225+ < cds-table-header-cell > RPKI Origin AS</ cds-table-header-cell >
226+ < cds-table-header-cell > IRR Origin AS</ cds-table-header-cell >
227+ < cds-table-header-cell > Last Change</ cds-table-header-cell >
228+ < cds-table-header-cell > IRR Description</ cds-table-header-cell >
229+ < cds-table-header-cell > IRR Source</ cds-table-header-cell >
230+ </ cds-table-header-row >
231+ </ cds-table-head >
232+ < cds-table-body >
233+ {% for prefix in prefixes %}
234+ < cds-table-row >
235+ < cds-table-cell > {{ prefix.prefix }}</ cds-table-cell >
236+ < cds-table-cell > {{ prefix.rpki_origin_as or '' }}</ cds-table-cell >
237+ < cds-table-cell > {{ prefix.irr_origin_as or '' }}</ cds-table-cell >
238+ < cds-table-cell > {{ prefix.last_changed or '' }}</ cds-table-cell >
239+ < cds-table-cell > {{ prefix.irr_description or '' }}</ cds-table-cell >
240+ < cds-table-cell > {{ prefix.irr_source or '' }}</ cds-table-cell >
241+ </ cds-table-row >
242+ {% endfor %}
243+ </ cds-table-body >
244+ </ cds-table >
245+ </ div >
246+ </ div >
188247 </ div >
189248 < div class ="content__panel " id ="connectivity " aria-labelledby ="tab-connectivity ">
190249 Tab Panel 3
191250 </ div >
192- < div class ="content__panel " id ="measurements " aria-labelledby ="tab-measurements ">
251+ < div class ="content__panel " id ="activity " aria-labelledby ="tab-activity ">
193252 Tab Panel 4
194253 </ div >
195254 < div class ="content__panel " id ="whois " aria-labelledby ="tab-whois ">
0 commit comments