Compare commits

...

2 Commits

Author SHA1 Message Date
Peter J. Holzer dfdfb289b2 Move css level further up to compensate for per-list directories
We want each list archive to be in a separate directory but we still
want a common style for all, so we have to go up one more level.
2020-06-14 20:29:18 +02:00
Peter J. Holzer 14130941c7 Handle empty from or subject 2020-06-14 20:28:20 +02:00
5 changed files with 5 additions and 5 deletions

View File

@ -1104,7 +1104,7 @@ class Thread:
for r in m.in_reply_to:
p = self.messages[r]
edges.append((p.x, p.y, m.x, m.y))
lines.append((m.date, m.mfrom, m.subject, m.encmsgid))
lines.append((m.date, m.mfrom or "(no sender)", m.subject or "(no subject)", m.encmsgid))
y += 1
s = "<table class='thread'>"
s += "<tr>"

View File

@ -5,7 +5,7 @@
<title>
{{list}}: {{month.year}}-{{month.month}}
</title>
<link rel="stylesheet" href="../../../style/luga.css">
<link rel="stylesheet" href="../../../../style/luga.css">
</head>
<body>
<h1> Mailinglist {{list}} {{month.year}}-{{month.month}}</h1>

View File

@ -5,7 +5,7 @@
<title>
{{list}}: {{subject}}
</title>
<link rel="stylesheet" href="../../style/luga.css">
<link rel="stylesheet" href="../../../style/luga.css">
</head>
<body>
<img id="logo" src="/style/logo3.svg">

View File

@ -5,7 +5,7 @@
<title>
{{list}}: Overview
</title>
<link rel="stylesheet" href="../../style/luga.css">
<link rel="stylesheet" href="../../../style/luga.css">
</head>
<body>
<header>

View File

@ -5,7 +5,7 @@
<title>
{{list}}: {{subject}}
</title>
<link rel="stylesheet" href="../../style/luga.css">
<link rel="stylesheet" href="../../../style/luga.css">
</head>
<body>
<h1>{{subject}}</h1>