-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Show box with ASCOR country details
- Loading branch information
1 parent
0c0f510
commit a982f24
Showing
4 changed files
with
95 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<section class="container summary-box"> | ||
<div class="columns"> | ||
<div class="column"> | ||
<%= render 'tpi/shared/property', highlight: false, name: 'ISO' do %> | ||
<%= country.iso %> | ||
<% end %> | ||
</div> | ||
<div class="column"> | ||
<%= render 'tpi/shared/property', highlight: false, name: 'Region' do %> | ||
<%= country.region %> | ||
<% end %> | ||
</div> | ||
<div class="column"> | ||
<%= render 'tpi/shared/property', highlight: false, name: 'World Bank lending group' do %> | ||
<%= country.wb_lending_group %> | ||
<% end %> | ||
</div> | ||
<div class="column"> | ||
<%= render 'tpi/shared/property', highlight: false, name: 'International Monetary Fund fiscal monitor category' do %> | ||
<%= country.fiscal_monitor_category %> | ||
<% end %> | ||
</div> | ||
<div class="column"> | ||
<%= render 'tpi/shared/property', highlight: false, name: 'Type of Party to the United Nations Framework Convention on Climate Change' do %> | ||
<%= country.type_of_party %> | ||
<% end %> | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters