mirror of
https://github.com/internetee/registry.git
synced 2025-07-03 09:43:36 +02:00
Story #107192666 - ensure domains/info page shows keyData or dsData/keyData
This commit is contained in:
parent
9f4651bdaa
commit
7d9272c60c
1 changed files with 16 additions and 1 deletions
|
@ -19,7 +19,8 @@
|
||||||
- if x.css('digest').text.present?
|
- if x.css('digest').text.present?
|
||||||
%dt= t(:ds_digest)
|
%dt= t(:ds_digest)
|
||||||
%dd= x.css('digest').text
|
%dd= x.css('digest').text
|
||||||
|
- @data.css('keyData').each do |x|
|
||||||
|
%dl.dl-horizontal
|
||||||
%dt= t(:flag)
|
%dt= t(:flag)
|
||||||
%dd= x.css('flags').text
|
%dd= x.css('flags').text
|
||||||
|
|
||||||
|
@ -27,7 +28,21 @@
|
||||||
%dd= x.css('protocol').text
|
%dd= x.css('protocol').text
|
||||||
|
|
||||||
%dt= t(:algorithm)
|
%dt= t(:algorithm)
|
||||||
%dd= x.css('keyData > alg').text
|
%dd= x.css('alg').text
|
||||||
|
|
||||||
|
%dt= t(:public_key)
|
||||||
|
%dd= x.css('pubKey').text
|
||||||
|
|
||||||
|
- @data.css('keyData').each do |x|
|
||||||
|
%dl.dl-horizontal
|
||||||
|
%dt= t(:flag)
|
||||||
|
%dd= x.css('flags').text
|
||||||
|
|
||||||
|
%dt= t(:protocol)
|
||||||
|
%dd= x.css('protocol').text
|
||||||
|
|
||||||
|
%dt= t(:algorithm)
|
||||||
|
%dd= x.css('alg').text
|
||||||
|
|
||||||
%dt= t(:public_key)
|
%dt= t(:public_key)
|
||||||
%dd= x.css('pubKey').text
|
%dd= x.css('pubKey').text
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue