Sha256: 8e9a3f7ceeb0e1b1214ef7a89fe6048351eb7851a8918d75a22f458fa23dd4cd
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
<% adjacent_paths ||= {} %> <div class="flex justify-between mb-4"> <span> <% if adjacent_paths["prev_item"].present? %> <%= link_to( adjacent_paths["prev_item"], class: "button button__sm button__text-secondary", title: t("previous_title", scope: "decidim.admin.shared.adjacent_navigation"), rel: "prev" ) do %> <%= icon "arrow-left-s-line", class: "fill-current" %> <%= t("previous", scope: "decidim.admin.shared.adjacent_navigation") %> <% end %> <% end %> </span> <span> <% if adjacent_paths["next_item"].present? %> <%= link_to( adjacent_paths["next_item"], class: "button button__sm button__text-secondary", title: t("next_title", scope: "decidim.admin.shared.adjacent_navigation"), rel: "next" ) do %> <%= t("next", scope: "decidim.admin.shared.adjacent_navigation") %> <%= icon "arrow-right-s-line", class: "fill-current" %> <% end %> <% end %> </span> </div>
Version data entries
6 entries across 6 versions & 1 rubygems