Actually fixed the confirm: issue. They are link_to now

Trimmed the CSS.
This commit is contained in:
2024-05-20 11:19:02 +01:00
parent d3fb547fb1
commit 781b2bb9f0
3 changed files with 15 additions and 16 deletions

View File

@@ -1,11 +1,14 @@
<h1>Domains <%= link_to "Add new domain",new_domain_path %> </h1>
<div class="domain">
<div class="domain-header">
<h2>Domains <%= link_to "Add new domain",new_domain_path %></h2>
</div>
<div id="domains">
<ul>
<% @domains.each do |domain| %>
<li><%= link_to domain.domain, domain %></li>
<div class="domain-list">
<ul><% @domains.each do |domain| %>
<li><%= link_to domain.domain, domain %></li>
<% end %>
</ul>
</ul>
</div>
</div>