ソースを参照

Enlace a movimientos de cuenta en favoritas y cambio de versión

Celestino Rey 1 年間 前
コミット
54fa611993
3 ファイル変更5 行追加3 行削除
  1. 1 1
      K8S/Makefile
  2. 1 1
      src/misfinanzas/settings.py
  3. 3 1
      src/templates/dashboard.html

+ 1 - 1
K8S/Makefile

@@ -1,6 +1,6 @@
 export ARQUITECTURA := $(shell lscpu |grep itectur | tr -d ' '| cut -f2 -d':')
 export REGISTRY=registry.reymota.es
-export IMG_VERSION = 0.34
+export IMG_VERSION = 0.35
 export IMG_NGINX_VERSION = 1.0
 
 # limpia todo

+ 1 - 1
src/misfinanzas/settings.py

@@ -16,7 +16,7 @@ import logging
 
 
 APP_NAME = "Finanzas"
-APP_VERSION = os.environ.get("APP_VERSION", "17.0.0")  # Valor por defecto si no está definido
+APP_VERSION = os.environ.get("APP_VERSION", "17.0.1")  # Valor por defecto si no está definido
 IMG_VERSION = os.environ.get("IMG_VERSION", "0.0.0-dev")  # Valor por defecto si no está definido
 
 

+ 3 - 1
src/templates/dashboard.html

@@ -15,7 +15,9 @@
         {% for f in favoritas %}
         <div class="val-cuenta">
             <div>
-                <h3>{{ f.nombre }}</h3>
+                <a href="{% url 'ver_cuenta' f.id  %}">
+                    <h3>{{ f.nombre }}</h3>
+                </a>
                 <span>{{ f.saldo|floatformat:2|intcomma }}</span>
             </div>
         </div>