diff --git a/gulaschromstore/settings.py b/gulaschromstore/settings.py index a05db19..6e1c854 100644 --- a/gulaschromstore/settings.py +++ b/gulaschromstore/settings.py @@ -112,7 +112,7 @@ AUTH_PASSWORD_VALIDATORS = [ LANGUAGE_CODE = 'de-de' -TIME_ZONE = 'UTC' +TIME_ZONE = 'Europe/Berlin' USE_I18N = True diff --git a/roms/templates/roms/details.html b/roms/templates/roms/details.html index 35721c9..9827091 100644 --- a/roms/templates/roms/details.html +++ b/roms/templates/roms/details.html @@ -12,9 +12,7 @@
-

{{rom.name}}

-

ID: {{rom.id}}

- +

{{rom.id}} - {{rom.name}}

{% if rom.user.id == user.id %}
@@ -24,6 +22,16 @@ {% endif %}
+ hochgeladen von {{rom.user.username}} + {% if rom.user.twitter %} + + {% endif %} + {% if rom.user.github %} + + {% endif %} + am {{rom.creation_time}}. + Zuletzt geupdated am {{rom.edit_time}}
+ {% for tag in rom.tags.all %} {{tag.name}} {% endfor %} @@ -51,7 +59,7 @@
  • Versetze das Badge in Bootloadermodus
  • Wähle die Rom-ID: -

    {{rom.id}}

    +

    {{rom.id|stringformat:"04d"}}

  • Wähle den Ziel-Slot
  • Warte auf den Neustart
  • @@ -106,10 +114,6 @@ var rom_infos = { 0x182000: { lable: "rom3 0x182000", is_low: false}, 0x202000: { lable: "rom4 0x202000", is_low: true}, 0x282000: { lable: "rom5 0x282000", is_low: false}, - 0x402000: { lable: "rom6 OTA 0x402000", is_low: true}, - 0x502000: { lable: "rom7 OTA 0x502000", is_low: true}, - 0x602000: { lable: "rom8 OTA 0x602000", is_low: true}, - 0x702000: { lable: "rom9 OTA 0x702000", is_low: true} }; var low_url = '{{rom.low_binary.url}}';