Fix columns size

This commit is contained in:
2023-10-01 10:22:03 +02:00
parent 5d536ce568
commit 75074d5e90
10 changed files with 36 additions and 32 deletions

View File

@@ -20,6 +20,10 @@ a.badge, a.badge:hover {
padding: 0; padding: 0;
} }
.w-33 {
width: 33% !important;
}
#nav-notes > p { #nav-notes > p {
padding: .5rem; padding: .5rem;
} }

View File

@@ -32,7 +32,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Type</th> <th class="w-33" scope="row">Type</th>
<td>{{ d.rolling_class.type }}</td> <td>{{ d.rolling_class.type }}</td>
</tr> </tr>
<tr> <tr>
@@ -54,7 +54,7 @@
<td>{{ d.era }}</td> <td>{{ d.era }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Manufacturer</th> <th class="w-33" scope="row">Manufacturer</th>
<td>{%if d.manufacturer %} <td>{%if d.manufacturer %}
<a href="{% url 'filtered' _filter="manufacturer" search=d.manufacturer.slug %}">{{ d.manufacturer }}{% if d.manufacturer.website %}</a> <a href="{{ d.manufacturer.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a>{% endif %} <a href="{% url 'filtered' _filter="manufacturer" search=d.manufacturer.slug %}">{{ d.manufacturer }}{% if d.manufacturer.website %}</a> <a href="{{ d.manufacturer.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a>{% endif %}
{% endif %}</td> {% endif %}</td>
@@ -78,7 +78,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Decoder</th> <th class="w-33" scope="row">Decoder</th>
<td>{{ d.decoder }}</td> <td>{{ d.decoder }}</td>
</tr> </tr>
<tr> <tr>

View File

@@ -17,25 +17,25 @@
<tbody> <tbody>
{% if d.logo %} {% if d.logo %}
<tr> <tr>
<th class="w-25" scope="row">Logo</th> <th class="w-33" scope="row">Logo</th>
<td><img style="max-height: 48px" src="{{ d.logo.url }}" /></td> <td><img style="max-height: 48px" src="{{ d.logo.url }}" /></td>
</tr> </tr>
{% endif %} {% endif %}
<tr> <tr>
<th class="w-25" scope="row">Name</th> <th class="w-33" scope="row">Name</th>
<td>{{ d.extended_name }}</td> <td>{{ d.extended_name }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Abbreviation</th> <th class="w-33" scope="row">Abbreviation</th>
<td>{{ d.name }}</td> <td>{{ d.name }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Country</th> <th class="w-33" scope="row">Country</th>
<td>{{ d.country.name }} <img src="{{ d.country.flag }}" alt="{{ d.country }}" /> <td>{{ d.country.name }} <img src="{{ d.country.flag }}" alt="{{ d.country }}" />
</tr> </tr>
{% if d.freelance %} {% if d.freelance %}
<tr> <tr>
<th class="w-25" scope="row">Notes</th> <th class="w-33" scope="row">Notes</th>
<td>A <em>freelance</em> company</td> <td>A <em>freelance</em> company</td>
</tr> </tr>
{% endif %} {% endif %}

View File

@@ -82,7 +82,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Company</th> <th class="w-33" scope="row">Company</th>
<td><abbr title="{{ consist.company.extended_name }}">{{ consist.company }}</abbr></td> <td><abbr title="{{ consist.company.extended_name }}">{{ consist.company }}</abbr></td>
</tr> </tr>
<tr> <tr>

View File

@@ -36,12 +36,12 @@
<tbody> <tbody>
{% if d.address %} {% if d.address %}
<tr> <tr>
<th class="w-25" scope="row">Address</th> <th class="w-33" scope="row">Address</th>
<td>{{ d.address }}</td> <td>{{ d.address }}</td>
</tr> </tr>
{% endif %} {% endif %}
<tr> <tr>
<th class="w-25" scope="row">Company</th> <th class="w-33" scope="row">Company</th>
<td><abbr title="{{ d.company.extended_name }}">{{ d.company }}</abbr></td> <td><abbr title="{{ d.company.extended_name }}">{{ d.company }}</abbr></td>
</tr> </tr>
<tr> <tr>

View File

@@ -17,18 +17,18 @@
<tbody> <tbody>
{% if d.logo %} {% if d.logo %}
<tr> <tr>
<th class="w-25" scope="row">Logo</th> <th class="w-33" scope="row">Logo</th>
<td><img style="max-height: 48px" src="{{ d.logo.url }}" /></td> <td><img style="max-height: 48px" src="{{ d.logo.url }}" /></td>
</tr> </tr>
{% endif %} {% endif %}
{% if d.website %} {% if d.website %}
<tr> <tr>
<th class="w-25" scope="row">Website</th> <th class="w-33" scope="row">Website</th>
<td><a href="{{ d.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a></td> <td><a href="{{ d.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a></td>
</tr> </tr>
{% endif %} {% endif %}
<tr> <tr>
<th class="w-25" scope="row">Category</th> <th class="w-33" scope="row">Category</th>
<td>{{ d.category | title }}</td> <td>{{ d.category | title }}</td>
</tr> </tr>
</tbody> </tbody>

View File

@@ -64,7 +64,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Type</th> <th class="w-33" scope="row">Type</th>
<td>{{ rolling_stock.rolling_class.type }}</td> <td>{{ rolling_stock.rolling_class.type }}</td>
</tr> </tr>
<tr> <tr>
@@ -95,7 +95,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Manufacturer</th> <th class="w-33" scope="row">Manufacturer</th>
<td>{%if rolling_stock.manufacturer %} <td>{%if rolling_stock.manufacturer %}
<a href="{% url 'filtered' _filter="manufacturer" search=rolling_stock.manufacturer.slug %}">{{ rolling_stock.manufacturer }}{% if rolling_stock.manufacturer.website %}</a> <a href="{{ rolling_stock.manufacturer.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a>{% endif %} <a href="{% url 'filtered' _filter="manufacturer" search=rolling_stock.manufacturer.slug %}">{{ rolling_stock.manufacturer }}{% if rolling_stock.manufacturer.website %}</a> <a href="{{ rolling_stock.manufacturer.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a>{% endif %}
{% endif %}</td> {% endif %}</td>
@@ -119,7 +119,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Interface</th> <th class="w-33" scope="row">Interface</th>
<td>{{ rolling_stock.get_decoder_interface_display }}</td> <td>{{ rolling_stock.get_decoder_interface_display }}</td>
</tr> </tr>
{% if rolling_stock.decoder %} {% if rolling_stock.decoder %}
@@ -145,7 +145,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Manufacturer</th> <th class="w-33" scope="row">Manufacturer</th>
<td>{%if rolling_stock.manufacturer %} <td>{%if rolling_stock.manufacturer %}
<a href="{% url 'filtered' _filter="manufacturer" search=rolling_stock.manufacturer.slug %}">{{ rolling_stock.manufacturer }}{% if rolling_stock.manufacturer.website %}</a> <a href="{{ rolling_stock.manufacturer.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a>{% endif %} <a href="{% url 'filtered' _filter="manufacturer" search=rolling_stock.manufacturer.slug %}">{{ rolling_stock.manufacturer }}{% if rolling_stock.manufacturer.website %}</a> <a href="{{ rolling_stock.manufacturer.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a>{% endif %}
{% endif %}</td> {% endif %}</td>
@@ -182,7 +182,7 @@
<tbody> <tbody>
{% for p in rolling_stock_properties %} {% for p in rolling_stock_properties %}
<tr> <tr>
<th class="w-25" scope="row">{{ p.property }}</th> <th class="w-33" scope="row">{{ p.property }}</th>
<td>{{ p.value }}</td> <td>{{ p.value }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
@@ -199,7 +199,7 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Class</th> <th class="w-33" scope="row">Class</th>
<td>{{ rolling_stock.rolling_class.identifier }}</td> <td>{{ rolling_stock.rolling_class.identifier }}</td>
</tr> </tr>
<tr> <tr>
@@ -234,7 +234,7 @@
<tbody> <tbody>
{% for p in class_properties %} {% for p in class_properties %}
<tr> <tr>
<th class="w-25" scope="row">{{ p.property }}</th> <th class="w-33" scope="row">{{ p.property }}</th>
<td>{{ p.value }}</td> <td>{{ p.value }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
@@ -255,7 +255,7 @@
<td>{{ rolling_stock.get_decoder_interface_display }}</td> <td>{{ rolling_stock.get_decoder_interface_display }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Address</th> <th class="w-33" scope="row">Address</th>
<td>{{ rolling_stock.address }}</td> <td>{{ rolling_stock.address }}</td>
</tr> </tr>
<tr> <tr>
@@ -301,7 +301,7 @@
<tbody> <tbody>
{% for d in rolling_stock.document.all %} {% for d in rolling_stock.document.all %}
<tr> <tr>
<td class="w-25">{{ d.description }}</td> <td class="w-33">{{ d.description }}</td>
<td><a href="{{ d.file.url }}" target="_blank">{{ d.filename }}</a></td> <td><a href="{{ d.file.url }}" target="_blank">{{ d.filename }}</a></td>
<td class="text-end">{{ d.file.size | filesizeformat }}</td> <td class="text-end">{{ d.file.size | filesizeformat }}</td>
</tr> </tr>
@@ -318,7 +318,7 @@
<tbody> <tbody>
{% for d in rolling_stock.decoder.document.all %} {% for d in rolling_stock.decoder.document.all %}
<tr> <tr>
<td class="w-25">{{ d.description }}</td> <td class="w-33">{{ d.description }}</td>
<td><a href="{{ d.file.url }}" target="_blank">{{ d.filename }}</a></td> <td><a href="{{ d.file.url }}" target="_blank">{{ d.filename }}</a></td>
<td class="text-end">{{ d.file.size | filesizeformat }}</td> <td class="text-end">{{ d.file.size | filesizeformat }}</td>
</tr> </tr>
@@ -337,7 +337,7 @@
<tbody> <tbody>
{% for j in rolling_stock_journal %} {% for j in rolling_stock_journal %}
<tr> <tr>
<th class="w-25" scope="row">{{ j.date }}</th> <th class="w-33" scope="row">{{ j.date }}</th>
<td>{{ j.log | safe }}</a></td> <td>{{ j.log | safe }}</a></td>
</tr> </tr>
{% endfor %} {% endfor %}

View File

@@ -14,19 +14,19 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Name</th> <th class="w-33" scope="row">Name</th>
<td>{{ d.scale }}</td> <td>{{ d.scale }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Ratio</th> <th class="w-33" scope="row">Ratio</th>
<td>{{ d.ratio }}</td> <td>{{ d.ratio }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Gauge</th> <th class="w-33" scope="row">Gauge</th>
<td>{{ d.gauge }}</td> <td>{{ d.gauge }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Tracks</th> <th class="w-33" scope="row">Tracks</th>
<td>{{ d.tracks }}</td> <td>{{ d.tracks }}</td>
</tr> </tr>
</tbody> </tbody>

View File

@@ -14,11 +14,11 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th class="w-25" scope="row">Type</th> <th class="w-33" scope="row">Type</th>
<td>{{ d.type }}</td> <td>{{ d.type }}</td>
</tr> </tr>
<tr> <tr>
<th class="w-25" scope="row">Category</th> <th class="w-33" scope="row">Category</th>
<td>{{ d.category | title}}</td> <td>{{ d.category | title}}</td>
</tr> </tr>
</tbody> </tbody>

View File

@@ -1,4 +1,4 @@
from ram.utils import git_suffix from ram.utils import git_suffix
__version__ = "0.4.0" __version__ = "0.4.1"
__version__ += git_suffix(__file__) __version__ += git_suffix(__file__)