Compare commits
4 Commits
43c333727d
...
v24.10.30
Author | SHA1 | Date | |
---|---|---|---|
1a1d963ca4
|
|||
f8d5473c25 | |||
![]() |
c15b22203a | ||
![]() |
b39c4c9385 |
2
.github/workflows/build-docker.yml
vendored
2
.github/workflows/build-docker.yml
vendored
@@ -22,7 +22,7 @@ jobs:
|
||||
REGISTRY: gitea.artixlinux.org
|
||||
DH_REGISTRY: docker.io
|
||||
REPO_ORG: ${{ gitea.repository_owner }}
|
||||
DH_ORG: corysanin
|
||||
DH_ORG: artixlinux
|
||||
IMAGE_NAME: archweb
|
||||
DH_IMAGE_NAME: archweb
|
||||
ABSOLUTE_IMAGE: ${{ env.REGISTRY }}/${{ env.REPO_ORG }}/${{ env.IMAGE_NAME }}
|
||||
|
@@ -1,5 +1,5 @@
|
||||
-e git+https://github.com/fredj/cssmin.git@master#egg=cssmin
|
||||
Django==5.0.8
|
||||
Django==5.0.9
|
||||
IPy==1.1
|
||||
Markdown==3.3.7
|
||||
bencode.py==4.0.0
|
||||
|
@@ -41,9 +41,6 @@ SITE_ID = 1
|
||||
DATE_FORMAT = 'Y-m-d'
|
||||
DATETIME_FORMAT = 'Y-m-d H:i'
|
||||
|
||||
# Disable so our own DATE_FORMAT/DATETIME_FORMAT is used.
|
||||
USE_L10N = False
|
||||
|
||||
# Login URL configuration
|
||||
LOGIN_URL = '/login/'
|
||||
LOGIN_REDIRECT_URL = '/'
|
||||
|
@@ -30,7 +30,7 @@
|
||||
<tbody>
|
||||
{% for entry in admin_log %}
|
||||
<tr>
|
||||
<th scope="row">{{ entry.action_time|date:"DATETIME_FORMAT" }}</th>
|
||||
<th scope="row">{{ entry.action_time|date:"Y-m-d H:i" }}</th>
|
||||
{% if log_user %}
|
||||
<td>{{ entry.user.username }}{% if entry.user.get_full_name %} ({{ entry.user.get_full_name }}){% endif %}</td>
|
||||
{% else %}
|
||||
|
@@ -188,19 +188,19 @@
|
||||
{% else %}{{ pkg.packager_str }}{% endif %}{% endwith %}</td>
|
||||
</tr><tr>
|
||||
<th>Build Date:</th>
|
||||
<td>{{ pkg.build_date|date:"DATETIME_FORMAT" }} UTC</td>
|
||||
<td>{{ pkg.build_date|date:"Y-m-d H:i" }} UTC</td>
|
||||
</tr>{% if pkg.signature %}<tr>
|
||||
<th>Signed By:</th>
|
||||
<td>{% with signer=pkg.signer %}{% if signer %}{% pgp_key_link pkg.signature.key_id signer.get_full_name|safe %}{% else %}Unknown ({% pgp_key_link pkg.signature.key_id|safe %}){% endif %}{% endwith %}</td>
|
||||
</tr><tr>
|
||||
<th>Signature Date:</th>
|
||||
<td>{{ pkg.signature.creation_time|date:"DATETIME_FORMAT" }} UTC</td>
|
||||
<td>{{ pkg.signature.creation_time|date:"Y-m-d H:i" }} UTC</td>
|
||||
</tr>{% else %}<tr>
|
||||
<th>Signed By:</th>
|
||||
<td>Unsigned</td>
|
||||
</tr>{% endif %}<tr>
|
||||
<th>Last Updated:</th>
|
||||
<td>{{ pkg.last_update|date:"DATETIME_FORMAT" }} UTC{% if pkg.is_recent %} <span class="recent" title="Your mirror may not yet have this package version">({{ pkg.last_update|naturaltime }})</span>{% endif %}</td>
|
||||
<td>{{ pkg.last_update|date:"Y-m-d H:i" }} UTC{% if pkg.is_recent %} <span class="recent" title="Your mirror may not yet have this package version">({{ pkg.last_update|naturaltime }})</span>{% endif %}</td>
|
||||
</tr>
|
||||
{% if user.is_authenticated %}<tr>
|
||||
<th>Reproducible Status:</th>
|
||||
|
@@ -38,7 +38,7 @@
|
||||
|
||||
<ul>
|
||||
<li><strong>Comment:</strong> {{ torrent.comment }}</li>
|
||||
<li><strong>Creation Date:</strong> {{ torrent.creation_date|date:"DATETIME_FORMAT" }} UTC</li>
|
||||
<li><strong>Creation Date:</strong> {{ torrent.creation_date|date:"Y-m-d H:i" }} UTC</li>
|
||||
<li><strong>Created By:</strong> {{ torrent.created_by }}</li>
|
||||
<li><strong>Announce URL:</strong> {{ torrent.announce }}</li>
|
||||
<li><strong>File Name:</strong> {{ torrent.file_name }}</li>
|
||||
|
Reference in New Issue
Block a user