SciPost Code Repository
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SciPost
Manage
Activity
Members
Labels
Plan
Issues
118
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SciPost
SciPost
Commits
5c3bab45
Commit
5c3bab45
authored
1 year ago
by
George Katsikas
Browse files
Options
Downloads
Patches
Plain Diff
improve sponsors view with css grid
fixes
#229
parent
6f2a4803
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scipost_django/sponsors/templates/sponsors/_sponsor_card.html
+24
-10
24 additions, 10 deletions
...ost_django/sponsors/templates/sponsors/_sponsor_card.html
scipost_django/sponsors/templates/sponsors/sponsors.html
+4
-12
4 additions, 12 deletions
scipost_django/sponsors/templates/sponsors/sponsors.html
with
28 additions
and
22 deletions
scipost_django/sponsors/templates/sponsors/_sponsor_card.html
+
24
−
10
View file @
5c3bab45
<div
class=
"card text-center mb-2"
>
<div
class=
"card bg-light text-center mb-2 d-flex flex-column justify-content-end"
>
{% if sponsor.logo %}
<img
class=
"card-img-top {{ sponsor.css_class }} p-2"
style=
"max-height: 16rem; max-width: 16rem;"
src=
"{% if sponsor.logo %}{{ sponsor.logo.url }}{% endif %}"
alt=
"{{ sponsor.name }} logo"
>
<img
class=
"card-img-top bg-white p-2 my-auto {{ sponsor.css_class }}"
style=
"max-height: 16rem;
max-width: 100%;
object-fit: contain"
src=
"{{ sponsor.logo.url }}"
alt=
"{{ sponsor.name }} logo"
/>
{% endif %}
<div
class=
"card-body bg-light text-start"
>
<h4
class=
"card-title"
>
{% if sponsor.name_original %}{{ sponsor.name_original }}{% else %}{{ sponsor.name }}{% endif %}
</h4>
{% if sponsor.name_original %}
<p
class=
"card-text"
>
({{ sponsor.name }})
</p>
{% endif %}
<img
src=
"{{ sponsor.country.flag }}"
alt=
"{{ sponsor.country }} flag"
/>
<span
class=
"text-muted"
><small>
[{{ sponsor.country }}]
</small></span>
{{ sponsor.get_country_display }}
<a
href=
"{% url 'finances:subsidies' %}?org={{ sponsor.id }}"
>
See subsidies
</a>
<div
class=
"p-2 text-start d-flex flex-column"
>
<h4>
{% firstof sponsor.name_original sponsor.name %}
</h4>
{% if sponsor.name_original %}
<p
class=
"card-text"
>
({{ sponsor.name }})
</p>
{% endif %}
<div
class=
"d-flex w-100 align-items-center"
>
<img
width=
"16"
height=
"11"
src=
"{{ sponsor.country.flag }}"
alt=
"{{ sponsor.country }} flag"
/>
<span
class=
"text-muted"
><small>
[{{ sponsor.country }}]
</small></span>
{{ sponsor.get_country_display }}
<a
class=
"ms-auto"
href=
"{% url 'finances:subsidies' %}?org={{ sponsor.id }}"
>
See subsidies
</a>
</div>
</div>
</div>
This diff is collapsed.
Click to expand it.
scipost_django/sponsors/templates/sponsors/sponsors.html
+
4
−
12
View file @
5c3bab45
...
...
@@ -87,38 +87,30 @@
<h1
class=
"highlight"
>
Our current Sponsors
</h1>
<h3
class=
"highlight"
>
€
20k and above:
</h3>
<div
class=
"
row
"
>
<div
class=
"
d-grid gap-3"
style=
"grid-template-columns: repeat(3, minmax(0, 1fr));
"
>
{% for sponsor in sponsors_20kplus %}
<div
class=
"col-md-6 col-lg-4 mb-2"
>
{% include 'sponsors/_sponsor_card.html' with sponsor=sponsor %}
</div>
{% endfor %}
</div>
<h3
class=
"highlight"
>
€
10k and above:
</h3>
<div
class=
"
row
"
>
<div
class=
"
d-grid gap-3"
style=
"grid-template-columns: repeat(3, minmax(0, 1fr));
"
>
{% for sponsor in sponsors_10kplus %}
<div
class=
"col-md-6 col-lg-4 mb-2"
>
{% include 'sponsors/_sponsor_card.html' with sponsor=sponsor %}
</div>
{% endfor %}
</div>
<h3
class=
"highlight"
>
€
5k and above:
</h3>
<div
class=
"
row
"
>
<div
class=
"
d-grid gap-3"
style=
"grid-template-columns: repeat(3, minmax(0, 1fr));
"
>
{% for sponsor in sponsors_5kplus %}
<div
class=
"col-md-6 col-lg-4 mb-2"
>
{% include 'sponsors/_sponsor_card.html' with sponsor=sponsor %}
</div>
{% endfor %}
</div>
<h3
class=
"highlight"
>
Our other current Sponsors:
</h3>
<div
class=
"
row
"
>
<div
class=
"
d-grid gap-3"
style=
"grid-template-columns: repeat(3, minmax(0, 1fr));
"
>
{% for sponsor in current_sponsors %}
<div
class=
"col-md-6 col-lg-4 mb-2"
>
{% include 'sponsors/_sponsor_card.html' with sponsor=sponsor %}
</div>
{% endfor %}
</div>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment