show text 'line' only when there is a lineno

This commit is contained in:
Klaas van Schelven
2024-04-04 16:00:46 +02:00
parent e7f67e9016
commit 5510002a47
2 changed files with 2 additions and 33 deletions

View File

@@ -35,9 +35,9 @@
<div> {# filename, function, lineno #}
{% if frame.in_app %}
<span class="font-bold">{{ frame.filename }}</span>{% if frame.function %} in <span class="font-bold">{{ frame.function }}</span>{% endif %} line <span class="font-bold">{{ frame.lineno }}</span>.
<span class="font-bold">{{ frame.filename }}</span>{% if frame.function %} in <span class="font-bold">{{ frame.function }}</span>{% endif %}{% if frame.lineno %} line <span class="font-bold">{{ frame.lineno }}</span>{% endif %}.
{% else %}
<span class="italic">{{ frame.filename }}{% if frame.function %} in {{ frame.function }}{% endif %} line {{ frame.lineno }}.</span>
<span class="italic">{{ frame.filename }}{% if frame.function %} in {{ frame.function }}{% endif %}{% if frame.lineno%} line {{ frame.lineno }}{% endif %}.</span>
{% endif %}
</div>

View File

@@ -838,10 +838,6 @@ select {
margin-right: auto;
}
.mb-12 {
margin-bottom: 3rem;
}
.mb-2 {
margin-bottom: 0.5rem;
}
@@ -1028,18 +1024,10 @@ select {
appearance: none;
}
.flex-row-reverse {
flex-direction: row-reverse;
}
.flex-col {
flex-direction: column;
}
.flex-col-reverse {
flex-direction: column-reverse;
}
.place-content-end {
place-content: end;
}
@@ -1142,10 +1130,6 @@ select {
border-top-width: 2px;
}
.border-dashed {
border-style: dashed;
}
.border-dotted {
border-style: dotted;
}
@@ -1234,16 +1218,6 @@ select {
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-green-500 {
--tw-bg-opacity: 1;
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
}
.bg-slate-500 {
--tw-bg-opacity: 1;
background-color: rgb(100 116 139 / var(--tw-bg-opacity));
}
.bg-gradient-to-r {
background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
@@ -1433,11 +1407,6 @@ select {
color: rgb(30 41 59 / var(--tw-text-opacity));
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
}
.line-through {
text-decoration-line: line-through;
}