From 7d565de466c0b6d45538c31aedd4a8361343bfd5 Mon Sep 17 00:00:00 2001 From: Reena-cell Date: Wed, 20 Jul 2022 13:24:24 +0200 Subject: [PATCH] /refactor change url name of ATMs list --- apimanager/apimanager/settings.py | 2 +- apimanager/apimanager/urls.py | 2 +- .../{atmsView => atmDetail}/__init__.py | 0 apimanager/{atmsView => atmDetail}/admin.py | 0 apimanager/{atmsView => atmDetail}/apps.py | 0 apimanager/{atmsView => atmDetail}/forms.py | 0 apimanager/{atmsView => atmDetail}/models.py | 0 .../static/atms/css/atms.css | 0 .../static/atms/js/atms.js | 0 .../templates/atmsView/atm_List.html | 4 +- apimanager/{atmsView => atmDetail}/tests.py | 0 apimanager/{atmsView => atmDetail}/urls.py | 2 +- apimanager/{atmsView => atmDetail}/views.py | 0 apimanager/base/templates/base.html | 4 +- apimanager/locale/es/LC_MESSAGES/django.mo | Bin 20636 -> 21121 bytes apimanager/locale/es/LC_MESSAGES/django.po | 158 +++++++++--------- 16 files changed, 90 insertions(+), 82 deletions(-) rename apimanager/{atmsView => atmDetail}/__init__.py (100%) rename apimanager/{atmsView => atmDetail}/admin.py (100%) rename apimanager/{atmsView => atmDetail}/apps.py (100%) rename apimanager/{atmsView => atmDetail}/forms.py (100%) rename apimanager/{atmsView => atmDetail}/models.py (100%) rename apimanager/{atmsView => atmDetail}/static/atms/css/atms.css (100%) rename apimanager/{atmsView => atmDetail}/static/atms/js/atms.js (100%) rename apimanager/{atmsView => atmDetail}/templates/atmsView/atm_List.html (90%) rename apimanager/{atmsView => atmDetail}/tests.py (100%) rename apimanager/{atmsView => atmDetail}/urls.py (86%) rename apimanager/{atmsView => atmDetail}/views.py (100%) diff --git a/apimanager/apimanager/settings.py b/apimanager/apimanager/settings.py index 9396769..604988c 100644 --- a/apimanager/apimanager/settings.py +++ b/apimanager/apimanager/settings.py @@ -53,7 +53,7 @@ INSTALLED_APPS = [ 'users', 'branches', 'atms', - 'atmsView', + 'atmDetail', 'entitlementrequests', 'customers', 'metrics', diff --git a/apimanager/apimanager/urls.py b/apimanager/apimanager/urls.py index fbe77f9..7c23338 100644 --- a/apimanager/apimanager/urls.py +++ b/apimanager/apimanager/urls.py @@ -39,7 +39,7 @@ urlpatterns += i18n_patterns( url(r'^users/', include('users.urls')), url(r'^branches/', include('branches.urls')), url(r'^atms/', include('atms.urls')), - url(r'^atms_views/', include('atmsView.urls')), + url(r'^atms_detail/', include('atmDetail.urls')), url(r'^customers/', include('customers.urls')), url(r'^metrics/', include('metrics.urls')), url(r'^config/', include('config.urls')), diff --git a/apimanager/atmsView/__init__.py b/apimanager/atmDetail/__init__.py similarity index 100% rename from apimanager/atmsView/__init__.py rename to apimanager/atmDetail/__init__.py diff --git a/apimanager/atmsView/admin.py b/apimanager/atmDetail/admin.py similarity index 100% rename from apimanager/atmsView/admin.py rename to apimanager/atmDetail/admin.py diff --git a/apimanager/atmsView/apps.py b/apimanager/atmDetail/apps.py similarity index 100% rename from apimanager/atmsView/apps.py rename to apimanager/atmDetail/apps.py diff --git a/apimanager/atmsView/forms.py b/apimanager/atmDetail/forms.py similarity index 100% rename from apimanager/atmsView/forms.py rename to apimanager/atmDetail/forms.py diff --git a/apimanager/atmsView/models.py b/apimanager/atmDetail/models.py similarity index 100% rename from apimanager/atmsView/models.py rename to apimanager/atmDetail/models.py diff --git a/apimanager/atmsView/static/atms/css/atms.css b/apimanager/atmDetail/static/atms/css/atms.css similarity index 100% rename from apimanager/atmsView/static/atms/css/atms.css rename to apimanager/atmDetail/static/atms/css/atms.css diff --git a/apimanager/atmsView/static/atms/js/atms.js b/apimanager/atmDetail/static/atms/js/atms.js similarity index 100% rename from apimanager/atmsView/static/atms/js/atms.js rename to apimanager/atmDetail/static/atms/js/atms.js diff --git a/apimanager/atmsView/templates/atmsView/atm_List.html b/apimanager/atmDetail/templates/atmsView/atm_List.html similarity index 90% rename from apimanager/atmsView/templates/atmsView/atm_List.html rename to apimanager/atmDetail/templates/atmsView/atm_List.html index a7bc22a..4ed2170 100644 --- a/apimanager/atmsView/templates/atmsView/atm_List.html +++ b/apimanager/atmDetail/templates/atmsView/atm_List.html @@ -1,7 +1,7 @@ {% extends 'base.html' %} {% load static %} {% load i18n %} -{% block page_title %} /atms_views{% endblock page_title %} {% block content %} +{% block page_title %} /atms_detail{% endblock page_title %} {% block content %}
-

{% trans "ATM Detail" %}

+

{% trans "ATMs Detail" %}

diff --git a/apimanager/atmsView/tests.py b/apimanager/atmDetail/tests.py similarity index 100% rename from apimanager/atmsView/tests.py rename to apimanager/atmDetail/tests.py diff --git a/apimanager/atmsView/urls.py b/apimanager/atmDetail/urls.py similarity index 86% rename from apimanager/atmsView/urls.py rename to apimanager/atmDetail/urls.py index c94588c..a58ddce 100644 --- a/apimanager/atmsView/urls.py +++ b/apimanager/atmDetail/urls.py @@ -9,5 +9,5 @@ from .views import AtmListView urlpatterns = [ url(r'^$', AtmListView.as_view(), - name='atms_views') + name='atms_detail') ] diff --git a/apimanager/atmsView/views.py b/apimanager/atmDetail/views.py similarity index 100% rename from apimanager/atmsView/views.py rename to apimanager/atmDetail/views.py diff --git a/apimanager/base/templates/base.html b/apimanager/base/templates/base.html index 3bfc79f..c4239ef 100644 --- a/apimanager/base/templates/base.html +++ b/apimanager/base/templates/base.html @@ -75,14 +75,14 @@ {% url "branches_list" as branches_list_url %} {% url "customers-create" as customers_create_url %} {% url "atms_list" as atms_list_url %} - {% url "atms_views" as atms_views_url %} + {% url "atms_detail" as atms_detail_url %} {% url "config-index" as config_index_url %} diff --git a/apimanager/locale/es/LC_MESSAGES/django.mo b/apimanager/locale/es/LC_MESSAGES/django.mo index 9941de1929db04579662ad3427b102d1bcf4fd02..e26d51718da602c9c6767a82875c6b8c99fb14d5 100644 GIT binary patch delta 5045 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 ce>-cvFm;\n" "Language-Team: LANGUAGE \n" @@ -67,141 +67,141 @@ msgstr "francés" msgid "Spanish" msgstr "español" -#: atms/forms.py:14 atms/templates/atms/atm_List.html:8 atmsView/forms.py:14 -#: atmsView/templates/atmsView/atm_List.html:8 +#: atmDetail/forms.py:14 atmDetail/templates/atmsView/atm_List.html:8 +#: atms/forms.py:14 atms/templates/atms/atm_List.html:8 msgid "ATM Id" msgstr "ID del cajero automático" -#: atms/forms.py:25 atms/templates/atms/atm_List.html:9 atmsView/forms.py:25 -#: atmsView/templates/atmsView/atm_List.html:9 +#: atmDetail/forms.py:25 atmDetail/templates/atmsView/atm_List.html:9 +#: atms/forms.py:25 atms/templates/atms/atm_List.html:9 #: branches/templates/branches/index.html:161 #: users/templates/users/detail.html:99 #: users/templates/users/invitation.html:22 msgid "Bank Id" msgstr "Id del banco" -#: atms/forms.py:35 atmsView/forms.py:35 branches/forms.py:33 +#: atmDetail/forms.py:35 atms/forms.py:35 branches/forms.py:33 #: consumers/templates/consumers/index.html:58 msgid "Name" msgstr "Nombre" -#: atms/forms.py:38 atmsView/forms.py:38 +#: atmDetail/forms.py:38 atms/forms.py:38 msgid "The name of the ATM" msgstr "La configuración de la API" -#: atms/forms.py:46 atms/templates/atms/atm_List.html:25 atmsView/forms.py:46 -#: atmsView/templates/atmsView/atm_List.html:24 branches/forms.py:43 +#: atmDetail/forms.py:46 atmDetail/templates/atmsView/atm_List.html:24 +#: atms/forms.py:46 atms/templates/atms/atm_List.html:25 branches/forms.py:43 #: branches/templates/branches/index.html:176 #: branches/templates/branches/index.html:203 msgid "Address" msgstr "Dirección" -#: atms/forms.py:56 atmsView/forms.py:56 branches/forms.py:53 +#: atmDetail/forms.py:56 atms/forms.py:56 branches/forms.py:53 msgid "Latitude" msgstr "latitud" -#: atms/forms.py:67 atmsView/forms.py:67 branches/forms.py:64 +#: atmDetail/forms.py:67 atms/forms.py:67 branches/forms.py:64 msgid "Longitude" msgstr "longitud" -#: atms/forms.py:78 atmsView/forms.py:78 +#: atmDetail/forms.py:78 atms/forms.py:78 msgid "Meta License Id" msgstr "Meta Licencia" -#: atms/forms.py:81 atmsView/forms.py:81 +#: atmDetail/forms.py:81 msgid "PDDL" msgstr "PDDL" -#: atms/forms.py:89 atmsView/forms.py:89 +#: atmDetail/forms.py:89 atms/forms.py:89 msgid "Meta License Name" msgstr "Nombre de la Licencia" -#: atms/forms.py:92 atmsView/forms.py:92 +#: atmDetail/forms.py:92 msgid "Open Data Commons Public Domain Dedication and License" msgstr "Dedicación y licencia de dominio público de Open Data Commons" -#: atms/forms.py:100 atmsView/forms.py:100 +#: atmDetail/forms.py:100 atms/forms.py:100 msgid "Opening Hours" msgstr "Horario de atención" -#: atms/forms.py:103 atms/forms.py:113 atms/forms.py:123 atms/forms.py:133 -#: atms/forms.py:143 atms/forms.py:153 atms/forms.py:163 atms/forms.py:173 -#: atmsView/forms.py:103 atmsView/forms.py:113 atmsView/forms.py:123 -#: atmsView/forms.py:133 atmsView/forms.py:143 atmsView/forms.py:153 -#: atmsView/forms.py:163 atmsView/forms.py:173 +#: atmDetail/forms.py:103 atmDetail/forms.py:113 atmDetail/forms.py:123 +#: atmDetail/forms.py:133 atmDetail/forms.py:143 atmDetail/forms.py:153 +#: atmDetail/forms.py:163 atmDetail/forms.py:173 atms/forms.py:103 +#: atms/forms.py:113 atms/forms.py:123 atms/forms.py:133 atms/forms.py:143 +#: atms/forms.py:153 atms/forms.py:163 atms/forms.py:173 msgid "None" msgstr "Ninguno" -#: atms/forms.py:110 atmsView/forms.py:110 +#: atmDetail/forms.py:110 atms/forms.py:110 msgid "Monday" msgstr "Lunes" -#: atms/forms.py:120 atmsView/forms.py:120 +#: atmDetail/forms.py:120 atms/forms.py:120 msgid "Tuesday" msgstr "Martes" -#: atms/forms.py:130 atmsView/forms.py:130 +#: atmDetail/forms.py:130 atms/forms.py:130 msgid "Wednesday" msgstr "Wednesday" -#: atms/forms.py:140 atmsView/forms.py:140 +#: atmDetail/forms.py:140 atms/forms.py:140 msgid "Thursday" msgstr "Jueves" -#: atms/forms.py:150 atmsView/forms.py:150 +#: atmDetail/forms.py:150 atms/forms.py:150 msgid "Friday" msgstr "Viernes" -#: atms/forms.py:160 atmsView/forms.py:160 +#: atmDetail/forms.py:160 atms/forms.py:160 msgid "Saturday" msgstr "Sábado" -#: atms/forms.py:170 atmsView/forms.py:170 +#: atmDetail/forms.py:170 atms/forms.py:170 msgid "Sunday" msgstr "Sunday" -#: atms/forms.py:180 atmsView/forms.py:180 +#: atmDetail/forms.py:180 atms/forms.py:180 msgid "Is Accessible" msgstr "producción y validación es" -#: atms/forms.py:189 atmsView/forms.py:189 +#: atmDetail/forms.py:189 atms/forms.py:189 msgid "ATM location" msgstr "Ubicación" -#: atms/forms.py:192 atmsView/forms.py:192 +#: atmDetail/forms.py:192 msgid "OBP" msgstr "OBP" -#: atms/forms.py:199 atmsView/forms.py:199 branches/forms.py:166 +#: atmDetail/forms.py:199 atms/forms.py:199 branches/forms.py:166 msgid "More information" msgstr "Más información" -#: atms/forms.py:202 atmsView/forms.py:202 +#: atmDetail/forms.py:202 atms/forms.py:202 msgid "short walk to the lake from here" msgstr "corto paseo hasta el lago desde aquí" -#: atms/forms.py:209 atmsView/forms.py:209 +#: atmDetail/forms.py:209 atms/forms.py:209 msgid "Deposit Capabilities" msgstr "Tiene capacidad de depósito" -#: atms/forms.py:218 atmsView/forms.py:218 +#: atmDetail/forms.py:218 atms/forms.py:218 msgid "Supported Languages" msgstr "Idiomas admitidos" -#: atms/forms.py:227 atmsView/forms.py:227 +#: atmDetail/forms.py:227 atms/forms.py:227 msgid "Services" msgstr "Servicios" -#: atms/forms.py:230 atmsView/forms.py:230 +#: atmDetail/forms.py:230 atms/forms.py:230 msgid "Service store" msgstr "Servicios" -#: atms/forms.py:237 atmsView/forms.py:237 branches/forms.py:146 +#: atmDetail/forms.py:237 atms/forms.py:237 branches/forms.py:146 #: branches/templates/branches/index.html:209 msgid "Accessible Features" msgstr "Características accesibles" -#: atms/forms.py:240 atmsView/forms.py:240 +#: atmDetail/forms.py:240 atms/forms.py:240 msgid "wheelchair, atm usuable by the visually impaired" msgstr "" "sillón de ruedas, cajero automático utilizable por las personas con " @@ -217,96 +217,101 @@ msgstr "" "automático utilizable por las personas con discapacidad visualsillón de " "ruedas, cajero automático utilizable por las personas con discapacidad " "visualsillón de ruedas, cajero automático utilizable por las personas con " -"discapacidad visual" +"discapacidad visualsillón de ruedas, cajero automático utilizable por las " +"personas con discapacidad visualsillón de ruedas, cajero automático " +"utilizable por las personas con discapacidad visual" -#: atms/forms.py:247 atmsView/forms.py:247 +#: atmDetail/forms.py:247 atms/forms.py:247 msgid "Supported Currencies" msgstr "Divisas Soportadas" -#: atms/forms.py:256 atmsView/forms.py:256 +#: atmDetail/forms.py:256 atms/forms.py:256 msgid "Write Notes" msgstr "Notas:" -#: atms/forms.py:265 atmsView/forms.py:265 +#: atmDetail/forms.py:265 atms/forms.py:265 msgid "Write location Category" msgstr "Categorías de ubicación" -#: atms/forms.py:274 atmsView/forms.py:274 +#: atmDetail/forms.py:274 atms/forms.py:274 msgid "Minimum Withdrawal" msgstr "El retiro mínimo" -#: atms/forms.py:284 atmsView/forms.py:284 +#: atmDetail/forms.py:284 atms/forms.py:284 msgid "Branch Identification" msgstr "Identificación de la sucursal" -#: atms/forms.py:287 atmsView/forms.py:287 +#: atmDetail/forms.py:287 atms/forms.py:287 msgid "Enter your Branch Identification" msgstr "Identificación de la sucursal" -#: atms/forms.py:294 atmsView/forms.py:294 +#: atmDetail/forms.py:294 atms/forms.py:294 msgid "Site Identification" msgstr "IDENTIFICACIÓN DEL LUGAR" -#: atms/forms.py:297 atmsView/forms.py:297 +#: atmDetail/forms.py:297 atms/forms.py:297 msgid "Enter your Site Identification" msgstr "IDENTIFICACIÓN DEL LUGAR" -#: atms/forms.py:304 atmsView/forms.py:304 +#: atmDetail/forms.py:304 atms/forms.py:304 msgid "Site Name" msgstr "Nobre del sitio" -#: atms/forms.py:307 atmsView/forms.py:307 +#: atmDetail/forms.py:307 atms/forms.py:307 msgid "Enter your Site Name " msgstr "Nobre del sitio" -#: atms/forms.py:314 atmsView/forms.py:314 +#: atmDetail/forms.py:314 atms/forms.py:314 msgid "Cash Withdrawal National fee" msgstr "Cargo Nacional por Retiro de Efectivo" -#: atms/forms.py:317 atmsView/forms.py:317 +#: atmDetail/forms.py:317 atms/forms.py:317 msgid "Cash withdrawal national fee" msgstr "Cargo Nacional por Retiro de Efectivo" -#: atms/forms.py:324 atmsView/forms.py:324 +#: atmDetail/forms.py:324 atms/forms.py:324 msgid "Cash Withdrawal international fee" msgstr "Cargo internacional por retiro de efectivo" -#: atms/forms.py:327 atmsView/forms.py:327 +#: atmDetail/forms.py:327 atms/forms.py:327 msgid "Cash withdrawal international fee" msgstr "Cargo internacional por retiro de efectivo" -#: atms/forms.py:334 atms/forms.py:337 atmsView/forms.py:334 -#: atmsView/forms.py:337 +#: atmDetail/forms.py:334 atmDetail/forms.py:337 atms/forms.py:334 +#: atms/forms.py:337 msgid "Balance Inquiry Fee" msgstr "Cargo por consulta de saldo" -#: atms/templates/atms/atm_List.html:4 atms/templates/atms/update.html:3 -#: atmsView/templates/atmsView/atm_List.html:4 -msgid "ATM Detail" +#: atmDetail/templates/atmsView/atm_List.html:4 base/templates/base.html:85 +msgid "ATMs Detail" msgstr "Descripción" +#: atmDetail/templates/atmsView/atm_List.html:10 #: atms/templates/atms/atm_List.html:10 -#: atmsView/templates/atmsView/atm_List.html:10 msgid "ATM Name" msgstr "Nombre del cajero automático" +#: atmDetail/templates/atmsView/atm_List.html:11 #: atms/templates/atms/atm_List.html:11 -#: atmsView/templates/atmsView/atm_List.html:11 msgid "More info" msgstr "Más información" +#: atmDetail/templates/atmsView/atm_List.html:33 +#: atms/templates/atms/atm_List.html:63 +#: consumers/templates/consumers/index.html:76 +#: users/templates/users/index.html:69 +msgid "View" +msgstr "Ver" + +#: atms/templates/atms/atm_List.html:4 atms/templates/atms/update.html:4 +msgid "ATM Detail" +msgstr "Descripción" + #: atms/templates/atms/atm_List.html:12 #: branches/templates/branches/index.html:164 msgid "Update Button" msgstr "Botón Actualizar" -#: atms/templates/atms/atm_List.html:63 -#: atmsView/templates/atmsView/atm_List.html:33 -#: consumers/templates/consumers/index.html:76 -#: users/templates/users/index.html:69 -msgid "View" -msgstr "Ver" - #: atms/templates/atms/index.html:3 base/templates/base.html:84 msgid "ATMs" msgstr "cajeros automáticos" @@ -388,10 +393,6 @@ msgstr "Consumidores" msgid "Branches" msgstr "Sucursales" -#: base/templates/base.html:85 -msgid "ATMs View" -msgstr "Vista de cajeros automáticos" - #: base/templates/base.html:94 msgid "Configurations" msgstr "Configuraciones" @@ -754,7 +755,7 @@ msgstr "URL de la imagen de portada" #: customers/forms.py:82 msgid "Face Image Date" -msgstr "Fecha de la imagen de portada +msgstr "Fecha de la imagen de portada" #: customers/forms.py:93 msgid "Date of Birth" @@ -1283,7 +1284,9 @@ msgstr "" "llamada APIMediana de tiempo desde el registro del consumidor hasta la " "primera llamada APIMediana de tiempo desde el registro del consumidor hasta " "la primera llamada APIMediana de tiempo desde el registro del consumidor " -"hasta la primera llamada " +"hasta la primera llamada APIMediana de tiempo desde el registro del " +"consumidor hasta la primera llamada APIMediana de tiempo desde el registro " +"del consumidor hasta la primera llamada " #: metrics/templates/metrics/custom_summary.html:111 #: metrics/templates/metrics/daily_summary.html:105 @@ -1402,7 +1405,9 @@ msgstr "" "desarrolladoresAplicaciones con distintas direcciones de correo electrónico " "para desarrolladoresAplicaciones con distintas direcciones de correo " "electrónico para desarrolladoresAplicaciones con distintas direcciones de " -"correo electrónico para " +"correo electrónico para desarrolladoresAplicaciones con distintas " +"direcciones de correo electrónico para desarrolladoresAplicaciones con " +"distintas direcciones de correo electrónico para " #: metrics/templates/metrics/hourly_summary.html:20 msgid "Hour" @@ -1564,6 +1569,9 @@ msgstr "Guardar valor" msgid "Save" msgstr "Ahorrar" +#~ msgid "ATMs View" +#~ msgstr "Vista de cajeros automáticos" + #~ msgid "consumer id" #~ msgstr "identificación del consumidor"