Test layout

This commit is contained in:
ARLakhin
2026-03-10 23:44:59 +03:00
parent ade07e6d84
commit 0dc0f10da7
14 changed files with 165 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
.header
.header-title
= "Аудиторы"
.main-container
.organisations-data
- @auditors.each do |auditor|
.organisation-data
- @info_about_auditors[auditor].keys.each do |key|
.organisation-elem
= "#{key}: #{@info_about_auditors[auditor][key]}"
+1
View File
@@ -0,0 +1 @@
=render 'error', error: @error
+1 -1
View File
@@ -2,7 +2,7 @@ doctype html
html
head
title
=t('app_name')
= "Отчетность 2026"
meta[name="viewport" content="width=device-width,initial-scale=1"]
meta name="turbo-refresh-method" content="morph"
= csrf_meta_tags
+10
View File
@@ -0,0 +1,10 @@
.header
.header-title
= "Организации"
.main-container
.organisations-data
- @organisations.each do |organisation|
.organisation-data
- @info_about_organisation[organisation].keys.each do |key|
.organisation-elem
= "#{key}: #{@info_about_organisation[organisation][key]}"