Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Layout tweaks on release report first page (#1605) #1611

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions templates/admin/release_report_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
<div class="pdf-page grid grid-cols-2 gap-x-4 items-center justify-items-center {{ bg_color }}">
<div class="flex flex-col h-full gap-y-6">
<div class="flex flex-col gap-y-2">
<h1 class="flex mb-0">
<h1 class="flex mb-0 font-bold">
<img
class="mt-[3px]"
style="width:3.3rem; margin-right:.5rem;" src="{% static 'img/Boost_Symbol_Transparent.svg' %}"
>
Boost
</h1>
<div class="flex gap-x-12 link-icons my-4">
<div class="flex gap-x-12 link-icons my-4 text-2xl justify-between">
{% include "includes/_social_icon_links.html" %}
</div>
<div>{{ commit_count|intcomma }} commit{{ commit_count|pluralize }} up through {{ version.display_name }}</div>
Expand All @@ -59,12 +59,9 @@ <h1 class="flex mb-0">
<tbody>
<tr>
<th scope="col"
class="p-3 h-8 text-base border border-r-0 border-b-0 border-gray-400 text-center">
Platform
</th>
<th scope="col"
class="p-3 text-base border border-b-0 border-gray-400">
File
colspan="2"
class="p-3 h-8 text-base border border-b-0 border-gray-400 text-center">
Download Now!
</th>
</tr>
{% for os, download_files in downloads.items %}
Expand Down Expand Up @@ -158,6 +155,7 @@ <h1 class="flex">
>
Boost {{ version.display_name }}
</h1>
<h2>Git activity for this release</h2>
<div class="mx-auto mb-4">{{ version_commit_count|intcomma }} Commit{{ version_commit_count|pluralize }} Across {{ library_count }} Repositories</div>
</div>

Expand Down
1 change: 1 addition & 0 deletions templates/includes/_social_icon_links.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
<a href="https://mastodon.social/@boostlibs" target="_blank" title="Mastodon"><i class="fa-brands fa-mastodon"></i></a>
<a href="https://www.reddit.com/user/boostlibs/" target="_blank" title="Reddit"><i class="fa-brands fa-reddit"></i></a>
<a href="https://github.com/boostorg" target="_blank" title="Github"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/company/cppalliance/" target="_blank" title="LinkedIn"><i class="fa-brands fa-linkedin"></i></a>
Loading