diff --git a/.gitea/Condor_America/Condor_America/__init__.py b/.gitea/Condor_America/Condor_America/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitea/Condor_America/Condor_America/__pycache__/__init__.cpython-312.pyc b/.gitea/Condor_America/Condor_America/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f6e05ccb..00000000 Binary files a/.gitea/Condor_America/Condor_America/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condor_America/Condor_America/__pycache__/settings.cpython-312.pyc b/.gitea/Condor_America/Condor_America/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index bae372fc..00000000 Binary files a/.gitea/Condor_America/Condor_America/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condor_America/Condor_America/__pycache__/urls.cpython-312.pyc b/.gitea/Condor_America/Condor_America/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 29b08ad5..00000000 Binary files a/.gitea/Condor_America/Condor_America/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condor_America/Condor_America/__pycache__/vista.cpython-312.pyc b/.gitea/Condor_America/Condor_America/__pycache__/vista.cpython-312.pyc deleted file mode 100644 index 9395ee47..00000000 Binary files a/.gitea/Condor_America/Condor_America/__pycache__/vista.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condor_America/Condor_America/__pycache__/wsgi.cpython-312.pyc b/.gitea/Condor_America/Condor_America/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index 2b8f9593..00000000 Binary files a/.gitea/Condor_America/Condor_America/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condor_America/Condor_America/asgi.py b/.gitea/Condor_America/Condor_America/asgi.py deleted file mode 100644 index 16bf78b8..00000000 --- a/.gitea/Condor_America/Condor_America/asgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -ASGI config for Condor_America project. - -It exposes the ASGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ -""" - -import os - -from django.core.asgi import get_asgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Condor_America.settings') - -application = get_asgi_application() diff --git a/.gitea/Condor_America/Condor_America/settings.py b/.gitea/Condor_America/Condor_America/settings.py deleted file mode 100644 index 1e3952c7..00000000 --- a/.gitea/Condor_America/Condor_America/settings.py +++ /dev/null @@ -1,123 +0,0 @@ -""" -Django settings for Condor_America project. - -Generated by 'django-admin startproject' using Django 5.0.6. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/5.0/ref/settings/ -""" - -from pathlib import Path - -# Build paths inside the project like this: BASE_DIR / 'subdir'. -BASE_DIR = Path(__file__).resolve().parent.parent - - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-sweaclck0=tntf6gjv**&7p(e8vv2o+do(g3_f7fe^yn+bt+sl' - -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = [] - - -# Application definition - -INSTALLED_APPS = [ - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', -] - -MIDDLEWARE = [ - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -] - -ROOT_URLCONF = 'Condor_America.urls' - -TEMPLATES = [ - { - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ["/home/daniel/script/mis_pruebas/Condor_America/Condor_America/templates"], - 'APP_DIRS': True, - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.debug', - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', - ], - }, - }, -] - -WSGI_APPLICATION = 'Condor_America.wsgi.application' - - -# Database -# https://docs.djangoproject.com/en/5.0/ref/settings/#databases - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', - } -} - - -# Password validation -# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators - -AUTH_PASSWORD_VALIDATORS = [ - { - 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', - }, -] - - -# Internationalization -# https://docs.djangoproject.com/en/5.0/topics/i18n/ - -LANGUAGE_CODE = 'en-us' - -TIME_ZONE = 'UTC' - -USE_I18N = True - -USE_TZ = True - - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/5.0/howto/static-files/ - -STATIC_URL = 'static/' - -# Default primary key field type -# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field - -DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/.gitea/Condor_America/Condor_America/templates/about_us.html b/.gitea/Condor_America/Condor_America/templates/about_us.html deleted file mode 100644 index fac25e16..00000000 --- a/.gitea/Condor_America/Condor_America/templates/about_us.html +++ /dev/null @@ -1,1846 +0,0 @@ - - - - - - - - -About 1 — Condor Business America LLC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - - - -
- - -
-
-
-
- - - - - - -
- -
-

About Us

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- -
-

Contact us.

customercare@cb-america.net

30 N Gould St. STE, Sheridan, WY, 82801

Phone: (760) 537-5919

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
- -
- -
- - -
- - - - - - - - -
- - - - - - -
- - - - - - \ No newline at end of file diff --git a/.gitea/Condor_America/Condor_America/templates/base.html b/.gitea/Condor_America/Condor_America/templates/base.html deleted file mode 100644 index a7d8fce2..00000000 --- a/.gitea/Condor_America/Condor_America/templates/base.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - Tu Sitio Web - - -
-
- Main -
- -
- Products & Services -
- -
- About Us -
- -
- Global Lists -
-
- -
- {% block content %} - - {% endblock %} -
- - diff --git a/.gitea/Condor_America/Condor_America/templates/cb_america.html b/.gitea/Condor_America/Condor_America/templates/cb_america.html deleted file mode 100644 index 4ec9c19d..00000000 --- a/.gitea/Condor_America/Condor_America/templates/cb_america.html +++ /dev/null @@ -1,1563 +0,0 @@ - - - - - - - - -Condor Business America LLC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - - - -
- - -
-
-
-
- - - - - - -
- -
-

Tomorrow Starts here

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- -
-

In technology, everything begins as a simple idea.

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
- - -
- - - - - - - - -
- - - - - - -
- - - - - - diff --git a/.gitea/Condor_America/Condor_America/templates/global_lists.html b/.gitea/Condor_America/Condor_America/templates/global_lists.html deleted file mode 100644 index 945e81b7..00000000 --- a/.gitea/Condor_America/Condor_America/templates/global_lists.html +++ /dev/null @@ -1,3126 +0,0 @@ - - - - - - - - -General 5 — Condor Business America LLC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - GLOBALLIST001.png - -
-
- -
- - -
- - - -
-
- - -

Our solution for compliance process.

- - - -

Globalists® is a powerful web tool for verifying individuals and entities against the most important black lists in the world. It also analyzes the risks and implications of relating to said individuals and/or entities.

- - - -
-
-
- Make It -
-
-
- - -
-
- - -
- - - - - - -
-
- -
- -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- -
-

Powerful compliance tool, any time, anywhere.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - -
-
- - - - - - - - Black Lists - -
-
- - - - - - -
-

Black Lists

-
- - -
- - -
- - - - - - -
- -
-

Black Lists.

The Black Lists are lists published by national (Criminal records FGR, TAX SAT) or international (FBI, CIA, OFAC, UN Terrorism, etc.) Organizations where the names of individuals, organizations, or companies involved with criminal activities, money laundering and terrorism are listed.

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - -
-
- - - - - - - - 38 Black Lists - -
-
- - - - - - -
-

38 Black Lists

-
- - -
- - -
- - - - - - -
- -
-

Integration.

Globalists® currently has 38 black lists of various organizations with a reach of over 211 countries.

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - -
-
- - - - - - - - People, entities, countries. - -
-
- - - - - - -
-

People, entities, countries.

-
- - -
- - -
- - - - - - -
- -
-

Updated

The black lists are updated regularly by a specialized team. The updates are done in a time frame not over 48 hours after the original source updates the list.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - -
-
- -
- -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- -
-

Benefits

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

Custom Plan.

Custom plan for the system’s use (individual or corporate).

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

Coincidences.

Coincidences classification by approximation percentages.

-
- - - - - - - - - - - - - - - - - - - - - - -
- -
-

Automatic Consults.

Automatic consults via API/Web Platform (Blacklists searches, face recognition, prospects risk classification).

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

Reports.

Reports export on PDF and Excel formats.

-
- - - - - - - - - - - - - - - - - - - - - - -
- -
-

Unlimited Access.

Access to the platform’s functionalities from any web browser.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

Massive Searches.

High-performance capacity to process massive searches.

-
- - - - - - - - - - - - - - - - - - - - - - -
- -
-

Search.

Sophisticated search and name detection algorithms.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

High Availability.

High availability of the platform: 24 hrs/365 days.

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- -
-

Globalists Uses

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - unsplash-image-iar-afB0QQw.jpg - -
-
- -
- - -
- - - -
-
- - -

Powerful.

- - - -

Any device with an internet connection can access Globalists®

Navigating through the system is intuitive. The platform will allow to check names against the black lists and will classify the prospects’ risks.

It’s possible to habilitate the REST API which allows to make massive name checks in real time against the black lists that are in Globalists® system.

- - - -
-
-
- Make It -
-
-
- - -
-
- - -
- - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - - -
-
- -
- - -
- - - -
-
- - -

The black lists consulting service through implementing the API REST works by the following rules:.

- - - -

The system looks for the searched name within the black lists database and makes a comparison to determinate the similarity percentage against the existing records. It shows the results as name and alias.

We deliver a token for the use of the service.

The user will have access to a limited number of monthly searches ranging from 1,000 up to 1,000,000 monthly searches.

The report will show the list, hour, date and the found coincidence.

It analyzes the similarities between the searched names through powerful algorithms of chain’s comparison, phonetics and diffuse logic..

- - - -
-
-
- Make It -
-
-
- - -
-
- - -
- - - - - - -
-
- -
- -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- -
-

Lists.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

US LISTS.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

CIA, FBI, Bureau of Alcohol Tobacco & Firearms, United States Marshals Service, Drug Enforcement Administration, Bureau of International Security and Nonproliferation, Patriot Act, The Bureau of Political Military Affairs' Directorate of Defense Trade Controls, The Bureau of Industry and Security, SSI List, FSE List, Environment Protection Agency, Postal Inspection Service, Immigration and Customs Enforcement.

Learn More

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

MEXICAN LISTS.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

FGR, PEPs, Procuraduría General de Justicia, Funcionarios Mexicanos Sancionados, Notarios, Corredores, Donatarias, Funcionarios Públicos Nacionales que no son PEPS, Funcionarios Ex PEP, Misiones Extranjeras acreditadas en México, Personas de Alto Perfil Social.

Learn More

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

OTHER LISTS.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

KINGPIN, OFAC, UN, Interpol, Inter-American Development Bank, World Bank, Bank of England, London Most Wanted, Department of Foreign Affairs and Trade (Australia), European Union, International PEPs (211 countries).

Learn More

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
- - -
- - - - - - - - -
- - - - - - -
- - - - - - \ No newline at end of file diff --git a/.gitea/Condor_America/Condor_America/templates/products_services.html b/.gitea/Condor_America/Condor_America/templates/products_services.html deleted file mode 100644 index 4fa67311..00000000 --- a/.gitea/Condor_America/Condor_America/templates/products_services.html +++ /dev/null @@ -1,1826 +0,0 @@ - - - - - - - - -Services 1 — Condor Business America LLC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - - - -
- - -
-
-
-
- - - - - - -
- -
-

Products & Services.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
-
- -
- -
- - - - - - - - - -
-
-
- - - -
-
-
-
- - - - - - -
- -
-

Products

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - minOS.png - -
-
- -
- - -
- - - -
-
- - -

minOS

- - - -

Reputational Risk

- - - - -
-
- - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - -
-
- - -

Global Lists

- - - -

Black lists

- - - - -
-
- - -
- - - - - - -
 
-
- -
- -
- - -
- - - - - - - - -
- - - - - - -
- - - - - - \ No newline at end of file diff --git a/.gitea/Condor_America/Condor_America/urls.py b/.gitea/Condor_America/Condor_America/urls.py deleted file mode 100644 index b2c97f15..00000000 --- a/.gitea/Condor_America/Condor_America/urls.py +++ /dev/null @@ -1,10 +0,0 @@ -from django.urls import path -from . import vista - -urlpatterns = [ - path('', vista.cb_america, name='cb_america'), - path('cb_america_web/', vista.cb_america, name='cb_america'), - path("products-services/", vista.products_services, name="products_services"), - path("about-us/", vista.about_us, name="about_us"), - path("global-lists/", vista.global_lists, name="global_lists"), -] \ No newline at end of file diff --git a/.gitea/Condor_America/Condor_America/vista.py b/.gitea/Condor_America/Condor_America/vista.py deleted file mode 100644 index 1b88b7cc..00000000 --- a/.gitea/Condor_America/Condor_America/vista.py +++ /dev/null @@ -1,13 +0,0 @@ -from django.shortcuts import render - -def cb_america(request): - return render(request, "cb_america.html") - -def products_services(request): - return render(request, "products_services.html") - -def global_lists(request): - return render(request, "global_lists.html") - -def about_us(request): - return render(request, "about_us.html") diff --git a/.gitea/Condor_America/Condor_America/wsgi.py b/.gitea/Condor_America/Condor_America/wsgi.py deleted file mode 100644 index e5928cd9..00000000 --- a/.gitea/Condor_America/Condor_America/wsgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -WSGI config for Condor_America project. - -It exposes the WSGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/ -""" - -import os - -from django.core.wsgi import get_wsgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Condor_America.settings') - -application = get_wsgi_application() diff --git a/.gitea/Condor_America/db.sqlite3 b/.gitea/Condor_America/db.sqlite3 deleted file mode 100644 index 16611644..00000000 Binary files a/.gitea/Condor_America/db.sqlite3 and /dev/null differ diff --git a/.gitea/Condor_America/manage.py b/.gitea/Condor_America/manage.py deleted file mode 100644 index aaa0ed89..00000000 --- a/.gitea/Condor_America/manage.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python -"""Django's command-line utility for administrative tasks.""" -import os -import sys - - -def main(): - """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Condor_America.settings') - try: - from django.core.management import execute_from_command_line - except ImportError as exc: - raise ImportError( - "Couldn't import Django. Are you sure it's installed and " - "available on your PYTHONPATH environment variable? Did you " - "forget to activate a virtual environment?" - ) from exc - execute_from_command_line(sys.argv) - - -if __name__ == '__main__': - main() diff --git a/.gitea/Condorbs/Condorbs/__init__.py b/.gitea/Condorbs/Condorbs/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitea/Condorbs/Condorbs/__pycache__/__init__.cpython-312.pyc b/.gitea/Condorbs/Condorbs/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6c820fba..00000000 Binary files a/.gitea/Condorbs/Condorbs/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condorbs/Condorbs/__pycache__/settings.cpython-312.pyc b/.gitea/Condorbs/Condorbs/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index 985cd267..00000000 Binary files a/.gitea/Condorbs/Condorbs/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condorbs/Condorbs/__pycache__/urls.cpython-312.pyc b/.gitea/Condorbs/Condorbs/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 8670415b..00000000 Binary files a/.gitea/Condorbs/Condorbs/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condorbs/Condorbs/__pycache__/vista.cpython-312.pyc b/.gitea/Condorbs/Condorbs/__pycache__/vista.cpython-312.pyc deleted file mode 100644 index 5b1ecde5..00000000 Binary files a/.gitea/Condorbs/Condorbs/__pycache__/vista.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condorbs/Condorbs/__pycache__/wsgi.cpython-312.pyc b/.gitea/Condorbs/Condorbs/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index 7669452a..00000000 Binary files a/.gitea/Condorbs/Condorbs/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Condorbs/Condorbs/asgi.py b/.gitea/Condorbs/Condorbs/asgi.py deleted file mode 100644 index b3cf5c31..00000000 --- a/.gitea/Condorbs/Condorbs/asgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -ASGI config for Condorbs project. - -It exposes the ASGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ -""" - -import os - -from django.core.asgi import get_asgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Condorbs.settings') - -application = get_asgi_application() diff --git a/.gitea/Condorbs/Condorbs/settings.py b/.gitea/Condorbs/Condorbs/settings.py deleted file mode 100644 index a81ea52d..00000000 --- a/.gitea/Condorbs/Condorbs/settings.py +++ /dev/null @@ -1,123 +0,0 @@ -""" -Django settings for Condorbs project. - -Generated by 'django-admin startproject' using Django 5.0.6. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/5.0/ref/settings/ -""" - -from pathlib import Path - -# Build paths inside the project like this: BASE_DIR / 'subdir'. -BASE_DIR = Path(__file__).resolve().parent.parent - - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-n7(6x8tak3xf07q74ghes4qh7(0ysqg*sa_3v7mt-zrh7hb_26' - -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = [] - - -# Application definition - -INSTALLED_APPS = [ - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', -] - -MIDDLEWARE = [ - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -] - -ROOT_URLCONF = 'Condorbs.urls' - -TEMPLATES = [ - { - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ["/home/daniel/script/mis_pruebas/Condorbs/Condorbs/templates"], - 'APP_DIRS': True, - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.debug', - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', - ], - }, - }, -] - -WSGI_APPLICATION = 'Condorbs.wsgi.application' - - -# Database -# https://docs.djangoproject.com/en/5.0/ref/settings/#databases - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', - } -} - - -# Password validation -# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators - -AUTH_PASSWORD_VALIDATORS = [ - { - 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', - }, -] - - -# Internationalization -# https://docs.djangoproject.com/en/5.0/topics/i18n/ - -LANGUAGE_CODE = 'en-us' - -TIME_ZONE = 'UTC' - -USE_I18N = True - -USE_TZ = True - - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/5.0/howto/static-files/ - -STATIC_URL = 'static/' - -# Default primary key field type -# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field - -DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/.gitea/Condorbs/Condorbs/templates/ciberseguridad.html b/.gitea/Condorbs/Condorbs/templates/ciberseguridad.html deleted file mode 100644 index 2ff25eef..00000000 --- a/.gitea/Condorbs/Condorbs/templates/ciberseguridad.html +++ /dev/null @@ -1,1035 +0,0 @@ - - - - - Ciberseguridad – Condor Business Solutions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
- Te ayudamos a prevenir - - - - - - - con la mejor tecnología -
- -
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
- -
- - - - - - -
- - -
- -
- - 0 - -
- -
-

- México registró

-

millones de intentos de ciberataques en 2022 -

-
-
- -
- -
-
-
-
- -
- -
- - - - - - -
- - -
- -
- - 0 - - % -
- -
-

- de las empresas

-

invierten menos del 2% de su presupuesto de TI en ciberseguridad -

-
-
- -
- -
-
-
-
- -
- -
- - - - - - -
- - -
- -
- - 0 - - % -
- -
-

- de los responsables

-

de TI o de seguridad afirman que sus equipos de ciberseguridad están saturados de alertas o de resolución de emergencias

-
-
- -
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

En Condor Group, somos especialistas en Gestión del Riesgo de Tecnología y Continuidad del negocio, donde ayudamos a las empresas mejorar y aplicar controles de Seguridad de la información en toda la infrastructura con buenas prácticas y estándar internacional ISO 27001, ISO 9001, ISO 30001, los cuales garantizarán un ambiente laboral más seguro, óptimo y confiable.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-

PROCESOS DE CIBERSEGURIDAD

- -
- - - - -
-
-
-
-
-
-
-
-
-
-
-
- Asset 1@4x
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

MANAGEMENT OPERATIONS CENTER

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Management Operations Center (MOC) de Condor Group, es el Centro de Monitoreo de Gestión y se encarga de ejecutar todos los procesos operativos en Condor Group, dentro del MOC (Management Operations Center) existen servicios asociados de POC (NOC-SOC), los cuales se encargan de brindar monitoreo, soluciones en Networking y atención en Incidentes de Seguridad, análisis de vulnerabilidades, threat hunting, threat intelligence, etc.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

PROTECTION OPERATIONS CENTER

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Protection Operations Center (POC) de Condor Group es un área derivada del MOC, enfocada y especializada en la gestión operativa brindando soluciones de protección de información a todos nuestros clientes y su arquitectura tecnológica. -Dentro del POC existen servicios asociados que ayudarán a la concientización del usuario final. Adicionalmente, es un servicio de protección y seguridad avanzada para la infraestructura TI de las empresas. Contamos con las herramientas, controles, disponibilidad de recursos y un entorno empresarial exclusivo que dictarán los puntos de partida.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

EXPERIENCIA Y TECNOLOGÍAS

-
-
-
-
-
-
-
-
-
-
-
-

Nuestro equipo cuenta con más de 10 años de experiencia en seguridad de TI a través del control, administración y manejo de las siguientes tecnologías:

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

¿QUIERES SABER MÁS?

-
-
-
-
-
-
-
-
-
-
-
-

Contacto

-
-
-
-
-
-
-
-
Teléfono: + 52 55 4747 2729 -
-
-
-
-
Email: contacto@condorbs.net
-
-
-
-
Dirección: Monterrey #70 oficina 103, Roma Norte -Ciudad de México, 06700
-
-
-
-
LUN-VIE 09:00 - 19:00
-
-
-
- -
-
-
-
-
-
-
-
-
- - - - - - -
-
- - -
-
- - -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Productos

-
- -
-
-
-
-
-
-

Sobre Nosotros

-
- -
-
-
-
-
-
-

Condor Group

-
- -
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Condorbs/Condorbs/templates/condorbs.html b/.gitea/Condorbs/Condorbs/templates/condorbs.html deleted file mode 100644 index 3473e753..00000000 --- a/.gitea/Condorbs/Condorbs/templates/condorbs.html +++ /dev/null @@ -1,716 +0,0 @@ - - - - - Condor Business Solutions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

- Soluciones - - - tecnológicas - - de PLD - - de Listas  Negras - -

-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-

fake rolex

breitling navitimer replica

https://www.bestwatchreplicas.co
-
-
-
-
-
-
-
-
-
-
-
Globalists
Herramienta web de verificación de personas y empresas en las Listas Negras más importantes del mundo
Saber Más
Ciberseguridad
Condor Business Solutions cuenta con una área especializada en ciberseguridad y prevención de perdida de datos
Saber Más
MinOS
El sistema minOS® permite vigilar y monitorear 150 fuentes noticiosas nacionales e internacionales (RSS) y Twitter con el uso de un sistema automatizado
Saber Más
Minds
(Monitoring Information Network and Detection System) es un sistema para la prevención de lavado de dinero.
Saber Más
-
-
- Previous -
-
- Next -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -

Sobre Nosotros

-
-
-
-
-
-
-
-
-
-
-
-
-

Misión

-
-
-
-
-

- Ser la empresa líder en México y en Estados Unidos en el otorgamiento de soluciones tecnológicas orientadas al sector financiero, que contribuya a un mayor cumplimiento de las disposiciones regulatorias en materia de PLD. - -Lograr el crecimiento sostenido de la empresa, creando valor y capital intelectual que coadyuve al mejor desarrollo de nuevos productos y soluciones innovadoras para nuestros clientes y socios de negocio.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Visión

-
-
-
-
-

- Contribuir en el desarrollo nacional e internacional ofreciendo productos especializados, servicios de consultoría tecnológica y de procesos de control interno, mediante la instrumentación de soluciones que generen alto valor en el negocio de nuestros clientes. - -Incursionar en mercados de Latinoamérica proporcionando las mejores alternativas en tecnología, siempre alineadas a los objetivos de negocio de los clientes del sector financiero, considerando el cumplimiento irrestricto de los más altos estándares de calidad en el servicio y diseño de soluciones.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -

Nuestros Valores

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Contacto

-
-
-
-
-
-
-
-
Teléfono: + 52 55 4747 2729 -
-
-
-
-
Email: contacto@condorbs.net
-
-
-
-
Dirección: Monterrey #70 oficina 103, Roma Norte -Ciudad de México, 06700
-
-
-
-
LUN-VIE 09:00 - 19:00
-
-
-
- -
-
-
-
-
-
-
-
-
- - - - - - -
-
- - -
-
- - -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-

Sobre Nosotros

-
- -
-
-
-
-
-
-

Condor Group

-
- -
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Condorbs/Condorbs/templates/contacto.html b/.gitea/Condorbs/Condorbs/templates/contacto.html deleted file mode 100644 index 11b2b248..00000000 --- a/.gitea/Condorbs/Condorbs/templates/contacto.html +++ /dev/null @@ -1,501 +0,0 @@ - - - - - Contacto – Condor Business Solutions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-

Contacto

-
-
-
-
-
-
-
-
Teléfono: + 52 55 4747 2729 -
-
-
-
-
Email: contacto@condorbs.net
-
-
-
-
Dirección: Monterrey #70 oficina 103, Roma Norte -Ciudad de México, 06700
-
-
-
-
LUN-VIE 09:00 - 19:00
-
-
-
- -
-
-
-
-
-
-
-
-
- - - - - - -
-
- - -
-
- - -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-

5 star watch replica uk reviews under 149 dollar cheap michele definition replica frames india fully iced out fake rado watches on ebay benchrest stock for sale good watches audemars piguet real vs fake ladies aquaracer it report patek philippe watches replica formula one guide lentes perfect replica watches usa constellation dials pdf level checker panerai composites replica factory pictures people buy it illegal to fake rolex royal oak offshore uk

-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-

Sobre Nosotros

-
- -
-
-
-
-
-
-

Condor Group

-
- -
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Condorbs/Condorbs/templates/minds.html b/.gitea/Condorbs/Condorbs/templates/minds.html deleted file mode 100644 index 8c67d6f4..00000000 --- a/.gitea/Condorbs/Condorbs/templates/minds.html +++ /dev/null @@ -1,1045 +0,0 @@ - - - - - MINDS – Condor Business Solutions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-

- MINDS es un sistema para la - - prevención - - de lavado de dinero -

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

El sistema lleva a cabo todos los procesos de cumplimiento comenzando por el análisis de información de prospectos, integración de datos de clientes y figuras relacionadas, declaración de perfil transaccional, asignación de nivel de riesgo por cliente, monitoreo transaccional, generación de alarmas y reportes a las autoridades. -Está dividido en módulos que permiten el monitoreo por producto financiero para diferentes tipos de análisis y manejo de información.

-
-
-
-
-
-
-
-
-
-
-
-

MÓDULOS

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

MINDS está desarrollado alrededor de 4 módulos principales: KYC, Cliente, Server y KYE. Cada uno de estos ayuda a cumplir correctamente con la regulación mexicana.

-
-
-
-
-
- - - - -
-
- - - - - - - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

FUNCIONALIDADES

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

MINDS tiene una gran variedad de funcionalidades, entre las cuales se incluyen los requerimientos principales de un sistema de PLD:

-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

BENEFICIOS

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
    -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Sistema

    -

    diseñado acorde a las regulaciones emitidas por las entidades gubernamentales.

    -
    - -
  • -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Automatización

    -

    de procesos.

    -
    - -
  • -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Cobertura

    -

    de actualizaciones derivada de cambios en la regulación.

    -
    - -
  • -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Cumplimiento

    -

    integral de las normas establecidas para la prevención del lavado de dinero.

    -
    - -
  • -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Gran adaptabilidad

    -

    a diversos sistemas y aplicaciones.

    -
    - -
  • -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Alta capacidad

    -

    de personalización para cubrir las necesidades de la institución.

    -
    - -
  • -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Sistema

    -

    flexible y escalable.

    -
    - -
  • -
  • - - - - -
    -
    - - - - -
    -
    -
    -

    Acceso a

    -

    consultoría profesional para el desarrollo del sistema y listas negras.

    -
    - -
  • -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Contacto

-
-
-
-
-
-
-
-
Teléfono: + 52 55 4747 2729 -
-
-
-
-
Email: contacto@condorbs.net
-
-
-
-
Dirección: Monterrey #70 oficina 103, Roma Norte -Ciudad de México, 06700
-
-
-
-
LUN-VIE 09:00 - 19:00
-
-
-
- -
-
-
-
-
-
-
-
-
- - - - - - -
-
- - -
-
- - -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-

Sobre Nosotros

-
- -
-
-
-
-
-
-

Condor Group

-
- -
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Condorbs/Condorbs/templates/minos.html b/.gitea/Condorbs/Condorbs/templates/minos.html deleted file mode 100644 index adf85dba..00000000 --- a/.gitea/Condorbs/Condorbs/templates/minos.html +++ /dev/null @@ -1,1112 +0,0 @@ - - - - - MinOS – Condor Business Solutions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
- - -
-
- - -
-
-
-
-
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

El sistema minOS® permite vigilar y monitorear 150 fuentes noticiosas nacionales e internacionales (RSS) y Twitter con el uso de un sistema automatizado, el riesgo reputacional de la figura pública, empresarial e institucional midiendo la percepción general que el segmento objetivo revele, asignando en tiempo real los niveles de riesgo y de exposición reputacional, con el propósito de aplicar estrategias para mejorarlo.Está dividido en módulos que permiten el monitoreo por producto financiero para diferentes tipos de análisis y manejo de información.

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

RIESGO REPUTACIONAL

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

La reputación es un cúmulo de percepciones y opiniones que tienen los diferentes actores de la persona física o moral (familia, sector de actividad, accionistas, proveedores, inversionistas, grupos de interés, competidores y la sociedad).

-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

El Riesgo Reputacional es el impacto, favorable o desfavorable, que un determinado evento puede causar en la reputación de un corporativo, marca o figura pública. Una buena gestión del Riesgo Reputacional permite una mejor práctica de Responsabilidad Social Empresarial.

-
-
-
-
-
-
-
-
-
-
-
-

CÓMO FUNCIONA

-
-
-
-
-
-
- -
-
-
-
-
-
-
-

Contacto

-
-
-
-
-
-
-
-
Teléfono: + 52 55 4747 2729 -
-
-
-
-
Email: contacto@condorbs.net
-
-
-
-
Dirección: Monterrey #70 oficina 103, Roma Norte -Ciudad de México, 06700
-
-
-
-
LUN-VIE 09:00 - 19:00
-
-
-
- -
-
-
-
-
-
-
-
-
- - - - - - -
-
- - -
-
- - -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-

Sobre Nosotros

-
- -
-
-
-
-
-
-

Condor Group

-
- -
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Condorbs/Condorbs/templates/politicas_de_privacidad.html b/.gitea/Condorbs/Condorbs/templates/politicas_de_privacidad.html deleted file mode 100644 index 178fa3e5..00000000 --- a/.gitea/Condorbs/Condorbs/templates/politicas_de_privacidad.html +++ /dev/null @@ -1,425 +0,0 @@ - - - - - Privacy Policy – Condor Business Solutions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-

AVISO DE PRIVACIDAD

-
-
-
-
-
-
-
-
-
-
-
- -
En este Aviso de Privacidad se explica nuestra política respecto de la recolección, uso, divulgación y transmisión de los datos de usuarios por parte de CONDOR BUSINESS SOLUTIONS, S.A. DE C.V. La presente política se podrá modificar a medida que actualizamos y ampliamos nuestros servicios. Por lo tanto, se recomienda consultarla periódicamente. Si accede a nuestro sitio web, www.condorbs.net, o de otro modo utiliza nuestro servicio, significa que presta su consentimiento a nuestras prácticas sobre información.
-

Importante: el presente Aviso de privacidad incluye hipervínculos a los que se puede acceder únicamente a través de nuestro sitio web, de modo que tendrá que visitar el sitio web para consultar los términos adicionales a los que se accede a través de los hipervínculos.
-

La presente política se podrá modificar a medida que actualizamos y ampliamos nuestros servicios. Consulte regularmente si existe alguna actualización a esta política. Usted acuerda que su aceptación de los Téminos de Uso y el Aviso de privacidad posterior a su consentimiento original, así como el uso del sitio web de CONDOR BUSINESS SOLUTIONS, S.A. DE C.V. o el uso continuo de nuestro servicio después de publicar un cambio a esta política implica que acepta dichos cambios y se obliga a respetarlos. Podrá acceder a la última versión de esta Aviso de privacidad visitando nuestro sitio web y haciendo clic en “Aviso de privacidad” al pie de las páginas del sitio web de http:// www.condorbs.net
-

Para garantizar el correcto resguardo de sus datos personales y para dar pleno cumplimiento a las obligaciones que establece la ley en la materia, se le informa que CONDOR BUSINESS SOLUTIONS, S.A. DE C.V. tiene implementadas las medidas de seguridad administrativas, técnicas y físicas necesarias y suficientes para evitar su daño, pérdida, alteración, destrucción, uso, acceso o divulgación indebida.
-

Los Datos Personales que han proporcionados no serán conservados, excepto la que fiscalmente debe considerarse por 5 años, en medios físicos y electrónicos, y posteriormente descartados para evitar un tratamiento indebido de los mismos.
-

En ningún caso CONDOR BUSINESS SOLUTIONS, S.A. DE C.V. transferirá los datos personales de sus clientes a un tercero, sin el consentimiento previo de los titulares
PROCEDIMIENTO PARA HACER VALER LOS DERECHOS ARCO.-
-

De ser el caso, usted tiene derecho de acceder a sus datos personales que poseemos y a los detalles del tratamiento de los mismos, así como a rectificarlos en caso de ser inexactos o incompletos; cancelarlos cuando considere que no se requieren para alguna de las finalidades señalados en el presente aviso de privacidad, estén siendo utilizados para finalidades no consentidas o haya finalizado la relación contractual o de servicio, o bien, oponerse al tratamiento de los mismos para fines específicos.
-

Los mecanismos que se han implementado para el ejercicio de dichos derechos, los cuales se conocen como derechos Arco mismos que se refieren a la rectificación, cancelación y oposición del Titular respecto al tratamiento de sus datos personales;
-

1) El procedimiento inicia con la presentación de la solicitud respectiva a los derechos Arco, en el domicilio de nuestra Oficina de Privacidad, misma que puede consultar mediante la liga de contacto en la página de CONDOR BUSINESS SOLUTIONS, S.A. DE C.V.
-

2) Su solicitud deberá contener la siguiente información: Nombre del titular de los datos personales. Domicilio o cualquier otro medio de contacto. Documentos que acrediten su personalidad e identidad. La descripción clara y precisa de los datos personales. Cualquier otro documento que facilite la localización de los datos.
-

3) El plazo para atender su solicitud es de: 15 días hábiles.
-

La última versión del presente Aviso de privacidad prevalecerá sobre todas las versiones anteriores.
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Productos

-
- -
-
-
-
-
-
-

Sobre Nosotros

-
- -
-
-
-
-
-
-

Condor Group

-
- -
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Condorbs/Condorbs/urls.py b/.gitea/Condorbs/Condorbs/urls.py deleted file mode 100644 index 3ef6b20a..00000000 --- a/.gitea/Condorbs/Condorbs/urls.py +++ /dev/null @@ -1,12 +0,0 @@ -from django.urls import path -from . import vista - -urlpatterns = [ - path("", vista.condorbs, name="condorbs"), - path("ciberseguridad", vista.ciberseguridad, name="ciberseguridad"), - path("minds", vista.minds, name="mind"), - path("minos", vista.minos, name="minos"), - path("contacto", vista.contacto, name="contacto"), - path("politicas de privacidad", vista.politicas_de_privacidad, name="politicas_de_privacidad"), - -] diff --git a/.gitea/Condorbs/Condorbs/vista.py b/.gitea/Condorbs/Condorbs/vista.py deleted file mode 100644 index 4f6bbd0f..00000000 --- a/.gitea/Condorbs/Condorbs/vista.py +++ /dev/null @@ -1,19 +0,0 @@ -from django.shortcuts import render - -def condorbs(request): - return render(request, "condorbs.html") - -def ciberseguridad(request): - return render(request, "ciberseguridad.html") - -def minds(request): - return render(request, "minds.html") - -def minos(request): - return render(request, "minos.html") - -def contacto(request): - return render(request, "contacto.html") - -def politicas_de_privacidad(request): - return render(request, "politicas_de_privacidad.html") \ No newline at end of file diff --git a/.gitea/Condorbs/Condorbs/wsgi.py b/.gitea/Condorbs/Condorbs/wsgi.py deleted file mode 100644 index 764b3872..00000000 --- a/.gitea/Condorbs/Condorbs/wsgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -WSGI config for Condorbs project. - -It exposes the WSGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/ -""" - -import os - -from django.core.wsgi import get_wsgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Condorbs.settings') - -application = get_wsgi_application() diff --git a/.gitea/Condorbs/db.sqlite3 b/.gitea/Condorbs/db.sqlite3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitea/Condorbs/manage.py b/.gitea/Condorbs/manage.py deleted file mode 100644 index 629fa8a2..00000000 --- a/.gitea/Condorbs/manage.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python -"""Django's command-line utility for administrative tasks.""" -import os -import sys - - -def main(): - """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Condorbs.settings') - try: - from django.core.management import execute_from_command_line - except ImportError as exc: - raise ImportError( - "Couldn't import Django. Are you sure it's installed and " - "available on your PYTHONPATH environment variable? Did you " - "forget to activate a virtual environment?" - ) from exc - execute_from_command_line(sys.argv) - - -if __name__ == '__main__': - main() diff --git a/.gitea/Globalists/Globalists/__init__.py b/.gitea/Globalists/Globalists/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitea/Globalists/Globalists/__pycache__/__init__.cpython-312.pyc b/.gitea/Globalists/Globalists/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index eccd9a9b..00000000 Binary files a/.gitea/Globalists/Globalists/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Globalists/Globalists/__pycache__/settings.cpython-312.pyc b/.gitea/Globalists/Globalists/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index cf07e70a..00000000 Binary files a/.gitea/Globalists/Globalists/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Globalists/Globalists/__pycache__/urls.cpython-312.pyc b/.gitea/Globalists/Globalists/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 5805dfcb..00000000 Binary files a/.gitea/Globalists/Globalists/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Globalists/Globalists/__pycache__/vista.cpython-312.pyc b/.gitea/Globalists/Globalists/__pycache__/vista.cpython-312.pyc deleted file mode 100644 index a8ba2ce9..00000000 Binary files a/.gitea/Globalists/Globalists/__pycache__/vista.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Globalists/Globalists/__pycache__/wsgi.cpython-312.pyc b/.gitea/Globalists/Globalists/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index 613d3800..00000000 Binary files a/.gitea/Globalists/Globalists/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Globalists/Globalists/asgi.py b/.gitea/Globalists/Globalists/asgi.py deleted file mode 100644 index 3dc22648..00000000 --- a/.gitea/Globalists/Globalists/asgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -ASGI config for Globalists project. - -It exposes the ASGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ -""" - -import os - -from django.core.asgi import get_asgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Globalists.settings') - -application = get_asgi_application() diff --git a/.gitea/Globalists/Globalists/settings.py b/.gitea/Globalists/Globalists/settings.py deleted file mode 100644 index d68fda80..00000000 --- a/.gitea/Globalists/Globalists/settings.py +++ /dev/null @@ -1,123 +0,0 @@ -""" -Django settings for Globalists project. - -Generated by 'django-admin startproject' using Django 5.0.6. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/5.0/ref/settings/ -""" - -from pathlib import Path - -# Build paths inside the project like this: BASE_DIR / 'subdir'. -BASE_DIR = Path(__file__).resolve().parent.parent - - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-9qhcv%u&)f#quj%=bs2hxeqc$wpwh86kn=24st^=)d&#xh1p7=' - -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = [] - - -# Application definition - -INSTALLED_APPS = [ - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', -] - -MIDDLEWARE = [ - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -] - -ROOT_URLCONF = 'Globalists.urls' - -TEMPLATES = [ - { - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ["/home/daniel/script/mis_pruebas/Globalists/Globalists/templates"], - 'APP_DIRS': True, - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.debug', - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', - ], - }, - }, -] - -WSGI_APPLICATION = 'Globalists.wsgi.application' - - -# Database -# https://docs.djangoproject.com/en/5.0/ref/settings/#databases - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', - } -} - - -# Password validation -# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators - -AUTH_PASSWORD_VALIDATORS = [ - { - 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', - }, -] - - -# Internationalization -# https://docs.djangoproject.com/en/5.0/topics/i18n/ - -LANGUAGE_CODE = 'en-us' - -TIME_ZONE = 'UTC' - -USE_I18N = True - -USE_TZ = True - - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/5.0/howto/static-files/ - -STATIC_URL = 'static/' - -# Default primary key field type -# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field - -DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/.gitea/Globalists/Globalists/templates/contacto.html b/.gitea/Globalists/Globalists/templates/contacto.html deleted file mode 100644 index 0e6bd644..00000000 --- a/.gitea/Globalists/Globalists/templates/contacto.html +++ /dev/null @@ -1,798 +0,0 @@ - - - - - - - Contacto – Globalists - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

CONTACTO

-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
- -
- - - - - - -
-
-
-
-
-
-
-
-
-
-

Ponte en contacto

-
-
-
-

Puedes enviarnos un correo electrónico o hacernos una llamada telefónica.

-
-
-
-
-
-
-
-
-
-
-
-

Nuestra Oficina

Millet #65 Colonia Extremadura Insurgentes C.P. 03740, México, CDMX
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Nuestro Correo

contacto@condorbs.net

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Nuestro Teléfono

55 4747 2729 / 55 5611 3961 / 55 5611 3971

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
- - -
-
-
-
- -
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
-

Copyright Condor Business Solutions © 2022. Todos los derechos reservados.

-
-
-
-
-
-
-
-
-
-
- -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Globalists/Globalists/templates/faq.html b/.gitea/Globalists/Globalists/templates/faq.html deleted file mode 100644 index ed0348f1..00000000 --- a/.gitea/Globalists/Globalists/templates/faq.html +++ /dev/null @@ -1,478 +0,0 @@ - - - - - - - FAQ – Globalists - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-

FAQ

-
-
-
-
-
-
-
-
-
-
-
-
- -

Así es, Globalists es una herramienta 100% web que permite realizar consultas desde cualquier dispositivo que tenga acceso a internet.

-
- - -
- - -
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-

Queremos escucharte

-
-
-
-

¿Tienes otra pregunta o algún comentario?

-
-
-
-

Ponte en contacto con nosotros y resolveremos tus dudas.

-
- -
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
- -
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
-

Copyright Condor Business Solutions © 2022. Todos los derechos reservados.

-
-
-
-
-
-
-
-
-
-
- -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Globalists/Globalists/templates/globalists.html b/.gitea/Globalists/Globalists/templates/globalists.html deleted file mode 100644 index 77a83e78..00000000 --- a/.gitea/Globalists/Globalists/templates/globalists.html +++ /dev/null @@ -1,803 +0,0 @@ - - - - - Globalists – Aplicación desarrollada para la búsqueda en listas negras. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

¿Sabes con qué personasempresas estas haciendo negocios?

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
- - -
-
-
-
-
-

¿Qué es Globalists?

-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
- - -
-
-
-
-
-

Globalists es una plataforma web que puede ser accesada desde cualquier dispositivo con conexión a Internet y que permite consultar nombres de individuos y/o empresas en las principales Listas Negras del mundo.

-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

- Pocos ven lo que somos pero todos ven lo que aparentamos

-
- Maquiavelo -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Listas Negras

Globalists cuenta con 38 listas de diversos organismos nacionales e internacionales con un alcance de más de 211 países y más de 2 millones de registros.

-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Búsqueda de nombres

Globalists cuenta con un sofisticado algoritmo de comparación de cadenas que utiliza una combinación de funciones de similitud, que complementa con funciones de lógica difusa, lo cual otorga una mayor precisión en la búsqueda realizada y una velocidad de respuesta muy alta.

-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Web Service

Globalists cuenta con una API Rest para realizar consultas individuales o masivas haciendo uso de la base de datos de la plataforma.

-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0 -
-

de registros

-
-
-
-
-
-
-
-
-
-
-
-
- 0 -
-

Listas Negras

-
-
-
-
-
-
-
-
-
-
-
-
- 0 -
-

países

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-

BENEFICIOS DE LA PLATAFORMA

-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Agenda una prueba del sistema

-
-
-
-

¿Quieres saber más?

-
-
-
-

Contáctanos o revisa nuestros planes comerciales y escoge el que esté hecho a tu medida.

-
- -
-
-
- - -
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
- -
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
-

Copyright Condor Business Solutions © 2022. Todos los derechos reservados.

-
-
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Globalists/Globalists/templates/long_in.html b/.gitea/Globalists/Globalists/templates/long_in.html deleted file mode 100644 index a3301555..00000000 --- a/.gitea/Globalists/Globalists/templates/long_in.html +++ /dev/null @@ -1,2 +0,0 @@ - -Globalists
\ No newline at end of file diff --git a/.gitea/Globalists/Globalists/templates/planes_comerciales.html b/.gitea/Globalists/Globalists/templates/planes_comerciales.html deleted file mode 100644 index 0ab5333d..00000000 --- a/.gitea/Globalists/Globalists/templates/planes_comerciales.html +++ /dev/null @@ -1,943 +0,0 @@ - - - - - - - Planes Comerciales – Globalists - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

PLANES COMERCIALES

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

BÁSICO

-
-
-
-

$1,600 MXN/MES

-
-
-
-
- - -
-
-
- -
-
-
- - -
-
-
- -
-
-
-
-
-
-

PLUS

-
-
-
-

$2,700 MXN/MES

-
-
-
-
- - -
-
-
- -
-
-
- - -
-
-
- -
-
-
-
-
-
-

MAX

-
-
-
-

$3,500 MXN/MES

-
-
-
-
- - -
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-

En caso de requerir un mayor número de consultas vía la Web API o un servicio con un servidor dedicado, Condor Business Solutions elaborará una propuesta comercial personalizada. -

-
-
-
-
- - -
-
-
-
-
-

CONTÁCTANOS

-
-
-
-
-
- -
- -
- - - - - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
-
-
- - -
-
-
-
- -
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
-

Copyright Condor Business Solutions © 2022. Todos los derechos reservados.

-
-
-
-
-
-
-
-
-
-
- -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.gitea/Globalists/Globalists/urls.py b/.gitea/Globalists/Globalists/urls.py deleted file mode 100644 index 03ff7c62..00000000 --- a/.gitea/Globalists/Globalists/urls.py +++ /dev/null @@ -1,10 +0,0 @@ -from django.urls import path -from . import vista - -urlpatterns = [ - path('', vista.globalists, name="globalists"), - path("planes-comerciales/", vista.planes_comerciales, name="planes_comerciales"), - path("faq/", vista.faq, name="faq"), - path("contacto/", vista.contacto, name="contacto"), - path("long-in/", vista.long_in, name="long_in"), -] diff --git a/.gitea/Globalists/Globalists/vista.py b/.gitea/Globalists/Globalists/vista.py deleted file mode 100644 index 611dd68c..00000000 --- a/.gitea/Globalists/Globalists/vista.py +++ /dev/null @@ -1,17 +0,0 @@ -from django.shortcuts import render - -def globalists(request): - return render(request, "globalists.html") - -def planes_comerciales(request): - return render(request, "planes_comerciales.html") - -def faq(request): - return render(request, "faq.html") - -def contacto(request): - return render(request, "contacto.html") - -def long_in(request): - return render(request, "long_in.html") - diff --git a/.gitea/Globalists/Globalists/wsgi.py b/.gitea/Globalists/Globalists/wsgi.py deleted file mode 100644 index 7b08b3ec..00000000 --- a/.gitea/Globalists/Globalists/wsgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -WSGI config for Globalists project. - -It exposes the WSGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/ -""" - -import os - -from django.core.wsgi import get_wsgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Globalists.settings') - -application = get_wsgi_application() diff --git a/.gitea/Globalists/db.sqlite3 b/.gitea/Globalists/db.sqlite3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitea/Globalists/manage.py b/.gitea/Globalists/manage.py deleted file mode 100644 index 5dce052f..00000000 --- a/.gitea/Globalists/manage.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python -"""Django's command-line utility for administrative tasks.""" -import os -import sys - - -def main(): - """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Globalists.settings') - try: - from django.core.management import execute_from_command_line - except ImportError as exc: - raise ImportError( - "Couldn't import Django. Are you sure it's installed and " - "available on your PYTHONPATH environment variable? Did you " - "forget to activate a virtual environment?" - ) from exc - execute_from_command_line(sys.argv) - - -if __name__ == '__main__': - main() diff --git a/.gitea/Muesart/Muesart/__init__.py b/.gitea/Muesart/Muesart/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitea/Muesart/Muesart/__pycache__/__init__.cpython-312.pyc b/.gitea/Muesart/Muesart/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2a370db7..00000000 Binary files a/.gitea/Muesart/Muesart/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Muesart/Muesart/__pycache__/settings.cpython-312.pyc b/.gitea/Muesart/Muesart/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index 12ff1912..00000000 Binary files a/.gitea/Muesart/Muesart/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Muesart/Muesart/__pycache__/urls.cpython-312.pyc b/.gitea/Muesart/Muesart/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 55672704..00000000 Binary files a/.gitea/Muesart/Muesart/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Muesart/Muesart/__pycache__/vista.cpython-312.pyc b/.gitea/Muesart/Muesart/__pycache__/vista.cpython-312.pyc deleted file mode 100644 index 361bf219..00000000 Binary files a/.gitea/Muesart/Muesart/__pycache__/vista.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Muesart/Muesart/__pycache__/wsgi.cpython-312.pyc b/.gitea/Muesart/Muesart/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index 43088367..00000000 Binary files a/.gitea/Muesart/Muesart/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/.gitea/Muesart/Muesart/asgi.py b/.gitea/Muesart/Muesart/asgi.py deleted file mode 100644 index 09f71f8c..00000000 --- a/.gitea/Muesart/Muesart/asgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -ASGI config for Muesart project. - -It exposes the ASGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ -""" - -import os - -from django.core.asgi import get_asgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Muesart.settings') - -application = get_asgi_application() diff --git a/.gitea/Muesart/Muesart/settings.py b/.gitea/Muesart/Muesart/settings.py deleted file mode 100644 index b17b8719..00000000 --- a/.gitea/Muesart/Muesart/settings.py +++ /dev/null @@ -1,123 +0,0 @@ -""" -Django settings for Muesart project. - -Generated by 'django-admin startproject' using Django 5.0.6. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/5.0/ref/settings/ -""" - -from pathlib import Path - -# Build paths inside the project like this: BASE_DIR / 'subdir'. -BASE_DIR = Path(__file__).resolve().parent.parent - - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-qoywsr(9vxxgefu32@1+2+#q_1*ev$u3%y@^5g-h)45^4g*5iq' - -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = [] - - -# Application definition - -INSTALLED_APPS = [ - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', -] - -MIDDLEWARE = [ - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -] - -ROOT_URLCONF = 'Muesart.urls' - -TEMPLATES = [ - { - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ["/home/daniel/script/mis_pruebas/Muesart/Muesart/templates"], - 'APP_DIRS': True, - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.debug', - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', - ], - }, - }, -] - -WSGI_APPLICATION = 'Muesart.wsgi.application' - - -# Database -# https://docs.djangoproject.com/en/5.0/ref/settings/#databases - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', - } -} - - -# Password validation -# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators - -AUTH_PASSWORD_VALIDATORS = [ - { - 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', - }, -] - - -# Internationalization -# https://docs.djangoproject.com/en/5.0/topics/i18n/ - -LANGUAGE_CODE = 'en-us' - -TIME_ZONE = 'UTC' - -USE_I18N = True - -USE_TZ = True - - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/5.0/howto/static-files/ - -STATIC_URL = 'static/' - -# Default primary key field type -# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field - -DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/.gitea/Muesart/Muesart/templates/aviso_de_privacidad.html b/.gitea/Muesart/Muesart/templates/aviso_de_privacidad.html deleted file mode 100644 index 91ddc17c..00000000 --- a/.gitea/Muesart/Muesart/templates/aviso_de_privacidad.html +++ /dev/null @@ -1,753 +0,0 @@ - - - - - - - - - -Condiciones de Uso — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - - - - - - - - - -
- -
-
 
- -
-

 Condiciones de Uso

-
- - - - - - - - - - - - - - - - - - - - - - -
 

 
- -
-

El uso de la información contenida en este sitio en Internet implica la aceptación de las condiciones de uso siguientes:

1. CONDOR BUSINESS ADVICERS, S.A. DE C.V. “CBA”, siempre ha buscado brindar la mayor importancia a prestar servicios e informar con calidad, apegado a las mejores metodologías, por ello ha creado este sitio en Internet para facilitar a los usuarios el acceso al contacto con CBA.

2. Los datos que aquí se contienen provienen totalmente de mecanismos internos de CBA, poniéndolo a disposición de los usuarios de forma individual para el usuario final. Queda, por tanto, prohibida toda comercialización de este derecho de acceso. CBA se reserva el derecho a modificar estas condiciones de uso en cualquier momento y sin previo aviso.

3. De ser el caso, se autoriza el uso de la información que se presenta, siempre que se cite la fuente: "Fuente: Sitio de Muesart, Condor Business Advicers, S.A. de C.V. en Internet: http://www.muesart.com, a fin de permitir a terceros verificar tal información.

4. Los datos que aparecen en este sitio se han introducido siguiendo estrictos procedimientos de control de calidad. Asimismo, CBA presenta la información con la mayor oportunidad posible, no obstante lo anterior, CBA no asume responsabilidad legal alguna o de cualquier otra índole por la precisión, oportunidad, contenido o uso de la misma que se dé por terceros.

5. Este sitio contiene medidas de seguridad para protegerlo de cualquier alteración realizada por terceros, sin embargo, CBA no asume ninguna responsabilidad por la alteración o manipulación del mismo una vez puestos en él.

6. CBA no garantiza el funcionamiento de la red de comunicaciones y por lo tanto no asume responsabilidad alguna sobre la disponibilidad de este sitio.

7. Este sitio podrá ofrecer enlaces a otros de organismos nacionales e internacionales. No obstante, CBA no asume ningún tipo de responsabilidad por el contenido, ni por el uso de esos sitios.

8. CBA no se responsabiliza de ningún daño o perjuicio sufrido por el usuario que se derive del acceso a los servidores internos de CBA o del uso de información o aplicaciones contenidos. Aunque el material contenido en este sitio ha sido previamente revisado con las últimas herramientas antivirus, CBA le recomienda tomar precauciones para proteger su equipo.

10. CBA no será responsable por la interpretación y aplicación que el usuario haga de los resultados obtenidos a través del uso de la información y/o servicios del sitio; por lo que cualquier decisión basada en su interpretación excluye CBA de responsabilidad alguna.
Es responsabilidad del usuario la interpretación y aplicación de los resultados de la información, servicios y cualquier dato en todas sus variantes, así como lo relacionado con la operación, supervisión y control de los mismos.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/templates/contacto.html b/.gitea/Muesart/Muesart/templates/contacto.html deleted file mode 100644 index 416421a6..00000000 --- a/.gitea/Muesart/Muesart/templates/contacto.html +++ /dev/null @@ -1,1127 +0,0 @@ - - - - - - - - - -Contacto — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - - - - - - - - - -
- -
-
- -
-

Contáctanos

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
 
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
-
- -
-

Nuestra Oficina y DERECHO DE RÉplica

Teléfono: 5547472729

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
 
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/templates/experiences.html b/.gitea/Muesart/Muesart/templates/experiences.html deleted file mode 100644 index 97e9fd29..00000000 --- a/.gitea/Muesart/Muesart/templates/experiences.html +++ /dev/null @@ -1,2027 +0,0 @@ - - - - - - - - - -Experiences — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - -
- - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - - - - -
-
- -
-

Experiences

MUESART seeks to break with paradigms and innovate in the creation of new ways of bringing culture closer to people.

 Throughout our journey, we have formed a group of specialists who have collaborated in the development of new cultural ideas that provide unique experiences to our customers.

DARE TO LIVE MUESART!

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-
  • Tours

  • ARCHAEOLOGICAL ADVENTURE

  • HISTORICAL ADVENTURE

  • CULTURAL TALKS

  • WORKSHOPS

    Contact us to get the details of our fantastic experiences!

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - -
- - calakmul12.jpeg - -
- - -
- - - - - - -
- -
-
- -
-
  • ARCHAEOLOGICAL ADVENTURE

For all those who have a wild spirit and who like to venture into the unknown, MUESART has what you need!

After a hard work, we have found the most mysterious and interesting areas of Mexico, and we have designed fantastic routes where you can witness the beauty of nature and the greatness of ancient civilizations.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Zona del SIlencio

Do you like the mystery?

The zone of silence is a region full of legends and exceptional beauty within the reserve of the biosphere of the Bagón de Mapimí.

Discover the desert and discover the rarities of this area where in 1970 an American test missile fell, an area full of aerolites and other fantastic attractions.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
 
 
 
 

- -
-

Calakmul

Travel the magical jungle of Campeche with its incredible landscapes, and enter the heart of the biosphere of Calakmul to witness one of the largest and most majestic complexes of the Mayan civilization.

Accompanied by a group of experts that will make your expedition unique.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Cerro del Xihuingo

Visit one of the Teotihuacan cities that established the trade route from the Gulf of Mexico to the center of the country. Know the main road and admire the Tecolote pyramid, used as a ceremonial center.

Walk the hill of Tres Peñas and see the cave paintings and petroglyphs found in the area.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Cerro del TEztcotzingo

Discover one of the most impressive architectural developments in the pre-Hispanic world.

Be amazed with this sacred enclosure built by the poet king Nezahaulcóyotl; where he devoted his great skills as an engineer, building one of the first botanical gardens in America, and where he designed the most beautiful stone carved baths on the planet.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
- -
-
  • TOURS

Mexico is a country full of history, culture and traditions.

The best way to know it is to walk it, visit it and live it through its streets, places and legends. In Muesart we have prepared a series of tours that awaken in you the interest and love for this great country.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 

- -
-

aRoma Café

Do you want to meet and try the best cafes in Mexico City?

Let the experts of MUESART guide you through the heart of the Roma neighborhood, where you could meet the most exotic coffee shops and the best flavors and aromas of coffee.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Templo Mayor

We know how important it is to know our culture and the best place to start is in the heart of Mexico City.

MUESART offers you a night of exclusive tour in the Templo Mayor. You will have access to all the rooms of the complex with the explanation of the experts of the site.

-
- - - - - - - - - - - - - - - - - - - - - - -

- -
-

Cantinas de la Ciudad de México

Tours of canteens there are many ...

Ours will make you live the Historical Center in an incomparable way, accompanied by experts of good living and good food.

Three hours that you will enjoy and you will know the legends and facts that marked our history in the heat of the glasses.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Poetas BEat

Did you know that Jack Kerouac, William Burroughs and Neal Cassady lived in Mexico?

From the hand of the experts you could know all the places they frequented in Mexico City, the places where they lived and all the relevant events of these revolutionaries of modern literature.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

Cultural Talks

On a permanent basis, MUESART organizes cultural presentations that bring together experts from various areas with the purpose of presenting topics of interest or of great relevance; all this accompanied by an excellent atmosphere and venues that are full of history.

Our commitment to the dissemination of culture is very high, so our cultural talks are totally free and open to the public.

We recommend you to follow us on social networks so that you are aware of all the events that are programmed by MUESART.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
 
 
- -
-

WORKSHOPS

As part of the project that MUESART is promoting, workshops will be held with which you can develop your creativity and start a pleasant foray into the artistic world. We will have recognized and widely trained exponents in each of the topics that we will address. Coming soon!

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

 

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - diff --git a/.gitea/Muesart/Muesart/templates/experiencias.html b/.gitea/Muesart/Muesart/templates/experiencias.html deleted file mode 100644 index 77e7a069..00000000 --- a/.gitea/Muesart/Muesart/templates/experiencias.html +++ /dev/null @@ -1,3195 +0,0 @@ - - - - - - - - - -Experiencias — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - -
- - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - - - - -
-
- -
-

Experiencias

MUESART busca romper con paradigmas e innovar en la creación de nuevas formas de acercar la cultura a las personas.

A lo largo de nuestro trayecto, hemos conformado un grupo de especialistas que han colaborado en el desarrollo de nuevas ideas culturales que brindan experiencias únicas a nuestro clientes.

¡ATRÉVETE A VIVIR MUESART!

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
- -
-
  • RECORRIDOS

  • ARQUEO AVENTURA

  • AVENTURA HISTÓRICA

  • Eventos CULTURALES

  • TALLERES

¡ Contáctanos para obtener los detalles de nuestras fantásticas experiencias !

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - -
- - calakmul12.jpeg - -
- - -
- - - - - - -
- -
-
- -
-
  • Arqueo-Aventura

Para todos aquellos que tiene un espíritu salvaje y qué gustan de aventurarse en lo desconocido, MUESART tiene lo que necesitas!

Después de una ardua labor, hemos encontrado las zonas más misteriosas e interesantes de México, y hemos diseñado recorridos fantásticos donde podrás presenciar la belleza de la naturaleza y la grandeza de las civilizaciones antiguas.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Zona del SIlencio

T​e gusta el misterio?

La zona del silencio es una región llena de leyendas y de una belleza excepcional dentro de la reserva de la biósfera del Bolsón de Mapimí.

Conoce el desierto y descubre las rarezas de esta zona donde en 1970 cayó un misil de prueba americano, zona llena de aerolitos y otras atracciones fantásticas.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
 
 
 
 
 

- -
-

Calakmul

Recorre la mágica selva de Campeche con su increíble fauna, y adentrarte al corazón de la biosfera de Calakmul para presenciar uno de los complejos más grandes y majestuosos de la civilización Maya.

Acompañado de un grupo de expertos que harán de tu expedición algo único.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Cerro del Xihuingo

Visita una de las ciudades teotihuacanas que establecieron la ruta de comercio desde el golfo de México hasta el centro del país. Conoce la calzada principal y admira la pirámide del Tecolote, utilizada como centro ceremonial.

Recorre el cerro de las Tres Peñas y contempla las pinturas rupestres y los petrograbados que se encuentran en la zona.

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Cerro del TEztcotzingo

Conoce uno de los desarrollos arquitectónicos más impresionantes del mundo prehispánico.

Asombrate con este sagrado recinto erigido por el rey poeta Nezahaulcóyotl; lugar donde consagró sus grandes habilidades como ingeniero, construyendo uno de los primeros jardines botánicos de América, y donde diseño los baños tallados en piedra más hermosos del planeta.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
- -
-
  • Recorridos

México es un país lleno de historia, cultura y tradiciones.

La mejor manera de conocerlo es caminarlo, visitarlo y vivirlo a través de sus calles, lugares y leyendas. En Muesart hemos preparado una serie de recorridos que despertaran en ti el interés y el amor por esta gran país.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 

- -
-

aRoma Café

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - aroma.png - -
-
- -
- - -
- - - -
- - - - - - -
- -
-

¿Quieres conocer y probar los mejores cafés de la Ciudad de México?

Deja que los expertos de MUESART te guíen a través del corazón de la colonia Roma, donde podrás conocer las cafeterías más originales y exóticas de la zona, llenas del sabor y el aroma del café de especialidad.

¡Si eres un amante del café no te puedes perder esta experiencia!

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

El lado oculto de San Angel

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - HORIZONTAL-01.png - -
-
- -
- - -
- - - -
- - - - - - -
- -
-

San Ángel, al sur de la Ciudad de México, zona de origen colonial con un contenido cultural diverso, museos, galerías, barras de café, historias y leyendas, en esta zona se desarrollaron narrativas literarias de Federico Gamboa y Manuel Paino, dentro de muchos otros personajes de la vida política y cultural de México, otro aspecto importante a resaltar es su patrimonio arquitectónico representado en las antiguas casonas de origen colonial además de su arte sacro representado en sus conventos de San Jacinto y el Carmen.

-
- - - - - - - - - - - - - - - - - - - - - - -

- -
-

Tlapan, escenario de lo eterno

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - photo_2020-03-17 15.22.54.jpeg - -
-
- -
- - -
- - - -
- - - - - - -
- -
-

Fundada por nahuas xochimilcas y tepanecas, señorío de los tenochcas, aliada de los españoles contra los mexicas, ruta de Morelos a su muerte, escondite de tropas norteamericanas, casa de sueño y reposo de Carlota y Maximiliano, guarida y fortaleza de tropas zapatistas, zona industrial y turística en el milagro mexicano. Tlalpan se ha adueñado de la historia; en su arquitectura y naturaleza nos regala memorias únicas. Su tiempo es la eternidad y su espacio el sueño mismo. Volvámonos parte de su historia y su goce. Conozcamos sus misterios bajo la tutela del tiempo.

“Hay tiempo para todo, tiempo para amar, tiempo para reír, tiempo para llorar, tiempo para gozar, tiempo para conocer tu ciudad, tiempo para sentir ... Tlalpan.“

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Los Contemporáneos: Sombras Citadinas

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - conte1_poster_nodatos_ok.png - -
-
- -
- - -
- - - -
- - - - - - -
- -
-

Sumérgete en la nostalgia de esta gran generación de poetas, escritores y artistas que florecieron a inicios del siglo XX en el corazón de la ciudad. Recorre las calles del Centro Histórico de la Ciudad de México y conoce los sucesos, historias, lugares, y personajes que rodearon a este grupo de intelectuales . Déjate atrapar por sus magníficas obras literarias y vive esta gran experiencia MUESART .

-
- - - - - - - - - - - - - - - - - - - - - - -
 

- -
-

Coyoacán: 500 años de amor

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - photo_2020-03-17 15.23.15.jpeg - -
-
- -
- - -
- - - -
- - - - - - -
- -
-

¿Y si el caminar en dos pasos se convirtiera en delirio de cuatro?  si una mano sucumbiera al enlace de otra bajo el sueño empedrado de un poblado mágico, donde la historia de amor ha bañado casas, suelos y memorias; si el despertar fuera andar en caminos de amor y el soñar fuera retomar palabras de historias… historias de encuentros y de voces que se cruzaron en un campo de goce llamado Coyoacán. Y si por un momento un recorrido se volviera arrullo y, por un instante, supiéramos que nuestra gran condena es escuchar el amor de los otros sobre suelos, casas, iglesias. 

“Volvamos Coyoacán un cuerpo que arde y sobre él, nosotros, y sobre el nosotros, 500 años de amor.”

-
- - - - - - - - - - - - - - - - - - - - - - -

 
- -
-

Eventos Culturales

De manera permanente MUESART organiza ponencias culturales que reúnen expertos de diversas áreas con el propósito presentar de temas de interés o de gran relevancia; todo esto acompañado de un excelente ambiente y sedes que están llenas historías.

Nuestro compromiso con la difusión de la cultura es muy alto por lo que nuestros eventos culturales son totalmente gratuitos y abiertos a todo el público.

Te recomendamos seguirnos en redes sociales para que estes enterado de todas los eventos que se tienen programados por MUESART.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
 
 
- -
-

Talleres

Como parte del proyecto que MUESART esta impulsando, se impartirán talleres con los que podrás desarrollar tú creatividad e iniciar un grata incursión por el mundo artístico. Contaremos con exponentes reconocidos y ampliamente capacitados en cada uno de los temas que abordaremos. ¡Espéralos!

-
- - - - - - - - - - - - - - - - - - - - - - -

- -
-

Taller de creación literaria: En un algún lugar de la mancha….

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - cartel_4-01.jpg - -
-
- -
- - -
- - - -
- - - - - - -
- -
-

Los talleres literarios manifiestan una necesidad: la exposición creativa de los sujetos a manifestar de forma escrita la valoración que tienen de la realidad. Desde la función emotiva y poética se adhieren a una necesidad de saber expresar con palabras nuestras necesidades espirituales, y no sólo satisfacer con el lenguaje una necesidad primaria. Dándole belleza y contenido a nuestra forma expresiva la escritura es fundamental. Dan a conocer la importancia de la literatura para entender múltiples condiciones humanas, y ejercitar en las personas un entendimiento pleno como sociedad.

OBJETIVOS

  1. Generar un grupo de escritura en donde se promueva la comunión con la palabra y con múltiples textos literarios.

  2. Comprender el uso y las fórmulas narrativas que generan efectos sensibles en los lectores.

  3. Generar su propio cuento y ensayo, siguiendo los lineamientos y conceptos aprendidos en clase.

  4. Generar actividades que estimulen su creatividad escrita, y sepan comunicar su sensibilidad de manera textual.

METODOLOGÍA

Para lograr que los participantes logren reforzar su creatividad escrita se recurrirán a diversas actividades:

  1. Ejercicios contenidos en su manual de estudio y actividades en clase de comprensión lectora.

  2. Clases con material audiovisual

  3. Textos direccionados a su carpeta de estudio

  4. Ejercicios que involucren la participación en equipo

Realizar microrrelatos, fábulas, cuentos y ensayos como trabajo de clase y en casa.

DURACIÓN

6 clases de 2 horas y media cada clase

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

 

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - diff --git a/.gitea/Muesart/Muesart/templates/letras_muesart.html b/.gitea/Muesart/Muesart/templates/letras_muesart.html deleted file mode 100644 index 392cf6a0..00000000 --- a/.gitea/Muesart/Muesart/templates/letras_muesart.html +++ /dev/null @@ -1,747 +0,0 @@ - - - - - - - - - -Letras Muesart — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - -
-
- - - -
- - - -
- -
-
- - - - -
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/templates/muesart.html b/.gitea/Muesart/Muesart/templates/muesart.html deleted file mode 100644 index 8bcdf5b5..00000000 --- a/.gitea/Muesart/Muesart/templates/muesart.html +++ /dev/null @@ -1,3466 +0,0 @@ - - - - - - - - - -Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - -
- - - - - - - - - - - -
- - - - - - -
- - - - - - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - -
- -
- - - -
-
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - -
-
- - - - - - - - - -
-
- - - - - - -
- - -
- - - - - - -
 
- -
-

La Historia vive en Muesart

-
- - - - - - - - - - - - - - - - - - - - - - -

 
 
 
 
 
-
- - -
- - low-angle-photography-of-brown-concrete-building-3680770.jpg - -
- - -
- - - - - - - -
- -
-
 
- -
-

¡Te Sorprenderás!

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - IMG_1813.png - -
-
- -
- - -
- - - -
- - - - - - -
 
 
 
 

- -
-

Una aventura permanente

Cada día es una nueva oportunidad para descubrir la historia, el arte, la ciencia y la cultura que ha definido nuestra existencia.

Con MUESART podrías vivir aventuras sin fin, llenas de momentos increíbles y grandes emociones.

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
- - - - - - - -
- -
-
 
- -
-

Experiencias únicas

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

Si preguntas a nuestros clientes por qué nos eligieron, es probable que obtengas muchas respuestas diferentes. Sin embargo, hay algo en lo que todos están de acuerdo:

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
- - ¡ La experiencia fue única y extraordinaria ! - -
- -
-
 
 
 
 
-
- - -
- - IMG_8280.jpg - -
- - -
- - - - - - - -
- -
-
 
- -
-

¡Rompe la Rutina!

¿T​e gustan las nuevas experiencias ?

Imaginamos un mundo donde la cultura, el arte, la historia, la ciencia y la aventura  se conjugan  para crear una experiencia única para ti, donde la sorpresa, el asombro y el misterio te envuelvan en cada momento.

Acércate a nuestros expertos y conoces todas las experiencias que MUESART tiene para los amantes de la cultura.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
-
- - -
- - person-in-traditional-dress-at-the-street-784707.jpg - -
- - -
- - - - - - - -
- -
-
 
- - - - - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

¡Se parte de MUesart!

-
- - - - - - - - - - - - - - - - - - - - - - -

- -
-

Queremos agradecer a todos las personas que han confiando en MUESART y que han creído en el proyecto. Sin su apoyo esto no sería posible.

Nuestro compromiso siempre se mantendrá de píe y nuestro propósito siempre será ofrecer las mejores y más innovadoras experiencias culturales.

La cultura es nuestra pasión y queremos que tu formes parte de este proyecto. ¡Te invitamos a descubrir MUESART!

Síguenos en redes sociales y en nuestro sitio web.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - -
 
 
-
- - - -
- - - - - - - - -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/templates/nuevo_indice.html b/.gitea/Muesart/Muesart/templates/nuevo_indice.html deleted file mode 100644 index 162b2c90..00000000 --- a/.gitea/Muesart/Muesart/templates/nuevo_indice.html +++ /dev/null @@ -1,3439 +0,0 @@ - - - - - - - - - -Home — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - -
- - - - - - - - - - - -
- - - - - - -
- - - - - - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - -
- -
- - - -
-
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - -
-
- - - - - - - - - -
-
- - - - - - -
- - -
- - - - - - -
 
- -
-

History lives in Muesart

-
- - - - - - - - - - - - - - - - - - - - - - -

 
 
 
 
 
-
- - -
- - low-angle-photography-of-brown-concrete-building-3680770.jpg - -
- - -
- - - - - - - -
- -
-
 
- -
-

You’ll be surprised!

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - batalla.png - -
-
- -
- - -
- - - -
- - - - - - -
 
 
 
 

- -
-

A permanent Adventure

Every day is a new opportunity to discover the history, art, science and culture that has defined our existence. With MUESART you could live endless adventures, full of incredible moments and great emotions.

-
- - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
- - - - - - - -
- -
-
 
- -
-

Unique Experiences

If you ask our customers why they chose us, it is likely that you will get many different answers. However, there is something that everyone agrees on:

-
- - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
-
- - The experience was extraordinary and unique ! - -
- -
-
 
 
-
- - -
- - IMG_8280.jpg - -
- - -
- - - - - - - -
- -
-
 
- -
-

Break the Routine!

Do you like new experiences?

We imagine a world where culture, art, history, science and adventure come together to create a unique experience for you, where surprise, amazement and mystery envelop you in each moment.

Come to our experts and know all the experiences that MUESART has for culture lovers.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
-
- - -
- - person-in-traditional-dress-at-the-street-784707.jpg - -
- - -
- - - - - - - -
- -
-
 
- - - - - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

be part of muesart!

-
- - - - - - - - - - - - - - - - - - - - - - -

- -
-

We want to thank all the people who have trusted MUESART and who have believed in the project. Without their support this would not be possible.

Our commitment will always remain standing and our purpose will always be to offer the best and most innovative cultural experiences.

Culture is our passion and we want you to be part of this project. We invite you to discover MUESART!

Follow us on social networks and on our website.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - -
 
 
-
- - - -
- - - - - - - - -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/templates/nuevos_eventos.html b/.gitea/Muesart/Muesart/templates/nuevos_eventos.html deleted file mode 100644 index c3857932..00000000 --- a/.gitea/Muesart/Muesart/templates/nuevos_eventos.html +++ /dev/null @@ -1,708 +0,0 @@ - - - - - - - - - -EXPERIENCIAS MUESART — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - -
-
- - - -
- - - -
- -
- - -
- - -
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/templates/sapiens_studios.html b/.gitea/Muesart/Muesart/templates/sapiens_studios.html deleted file mode 100644 index 92f77579..00000000 --- a/.gitea/Muesart/Muesart/templates/sapiens_studios.html +++ /dev/null @@ -1,1111 +0,0 @@ - - - - - - - - - -Sapiens Studio — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - - - - - - - - - -
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - Sapiens Studios SECOND_RED-TRIANGULO-WHITE.png - -
-
- -
- - -
- - - -
- - - - - - -
 

- -
-

Devoradores de historias

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
- -
-

El objetivo de Sapiens Studios es ser el creador de contenido literario, expresiones artísticas y producciones audiovisuales, entre otros.

En alianza con los creadores de contenido y los artistas, Sapiens Studio ejecuta la producción.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- -
-

¡Proximamente!

-
- - - - - - - - - - - - - - - - - - - - - - -

- -
-

Creadores de mundos

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
 
- -
-

 

-
- - - - - - - - - - - - - - - - - - - - - - -
 
 
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/templates/sobre_nosotros.html b/.gitea/Muesart/Muesart/templates/sobre_nosotros.html deleted file mode 100644 index bc0f200a..00000000 --- a/.gitea/Muesart/Muesart/templates/sobre_nosotros.html +++ /dev/null @@ -1,1668 +0,0 @@ - - - - - - - - - -Sobre Nosotros — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - -
- - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - - - - -
-
- -
-

¿Quienes somos?

MUESART nace como un esfuerzo conjunto entre la gestión artística-cultural y la fuerza empresarial, teniendo como objetivo principal el ofrecer experiencias únicas en la apreciación y descubrimiento de la riqueza cultural a través de la historia, la arqueología, los viajes y las tradiciones.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - -
- - Copia%2Bde%2BIMG_8272%2B2.jpg - -
- - -
- - - - - - -
- -
-

- -
-

Somos los mejores

Ponemos al alcance del público el arte, la cultura y la historia en sus diferentes expresiones, de una forma innovadora.

Para lograrlo, nos hemos rodeado de un gran equipo de expertos, así como de herramientas de comunicación y exhibición idóneas para hacer de cada exhibición una experiencia única.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - IMG_8283.jpg - -
-
- -
- - -
- - - -
-
- - -

Museo De Antropología

- - - -

Ciudad de México

- - - - -
-
- - -
- - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - DSCN0236.jpg - -
-
- -
- - -
- - - -
-
- - -

Temporalidades

- - - -

Jorge Bocanegra

- - - - -
-
- - -
- - - - - - -

- -
-

Conocimiento y aventura

Cada uno de los programas propuestos por nuestro equipo, lleva consigo todo un estudio previo sobre el lugar y el tema a tratar, rico en experiencia y conocimiento de nuestros expertos. Ésto garantiza que todas nuestras exposiciones están llenas de enseñanzas, historias y datos culturales que cautivarán a todos nuestros participantes.  

Nuestra pasión por innovar y por lo que hacemos, le brindarán una experiencia única, dinámica, llena de aventuras y narraciones que sin duda se quedarán en los mejores recuerdos de quien nos acompañe.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - 8.jpg - -
-
- -
- - -
- - - -
-
- - -

Ruta Cuatrociénagas

- - - -

Coahuíla

- - - - -
-
- - -
- - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - centro-historico-cdmx01.jpg - -
-
- -
- - -
- - - -
-
- - -

Centro Histórico

- - - -

Ciudad de México

- - - - -
-
- - -
- - - - - - -
 

- -
-

La gestión cultural

Siendo una empresa amante de la cultura, estamos comprometidos en promover nuestras riquezas patrimoniales, favoreciendo, impulsando y creando proyectos artísticos, históricos y culturales.

En éste sentido, contamos con diferentes actividades, disponibles para nuestros clientes que tienen como finalidad resaltar la importancia de la preservación y acrecentar los conocimientos de nuestro público.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - IMGP0438.JPG - -
-
- -
- - -
- - - -
-
- - -

Danzantes

- - - -

Ciudad de México

- - - - -
-
- - -
- - - - - - -
 

- -
-

Experiencias únicas para ti

Gracias a la trayectoria de nuestro equipo, tenemos el privilegio de poner al alcance de nuestros clientes rutas, charlas, cursos y actividades exclusivas.


Cada actividad será diseñada de manera única y especial para cada uno de nuestros participantes.

Contamos con un directorio amplio de lugares con actividades para todo tipo de público, te ofrecemos la oportunidad de conocer sitios insólitos con la más alta calidad en los servicios.

Arqueólogos, Historiadores, Artistas e intelectuales conforman nuestro equipo!

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - 5.jpg - -
-
- -
- - -
- - - -
-
- - -

Minas de Marmol

- - - -

Coahuila

- - - - -
-
- - -
- - - - - - -
 
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - diff --git a/.gitea/Muesart/Muesart/templates/tienda_en_lnea.html b/.gitea/Muesart/Muesart/templates/tienda_en_lnea.html deleted file mode 100644 index eea2e7a6..00000000 --- a/.gitea/Muesart/Muesart/templates/tienda_en_lnea.html +++ /dev/null @@ -1,1257 +0,0 @@ - - - - - - - - - -Tienda en Línea — Muesart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-
- -
-
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - Accueil - - - - - - - - Expériences - - - - - - - - Qui sommes-nous ? - - - - -
- - - - - - -
-
- -
-
-
- - -
-
- - - - - - - -
- - - - - - -
-
- -
-
- -
-
-
- - - -
-
- - - - -
-
- - - -
-
-
- -
- -
- -
- -
- - - - - -
-
- -
-

Tienda en Línea

Tenemos como objetivo promover, presentar y comercializar el trabajo de artistas emergentes y confirmados; bajo una plataforma digital que acelere el contacto entre los creadores y los amantes de la cultura.

-
- - - - - - - - - - - - - - - - - - - - - - -
 
- - -
- - photo_2019-01-02 13.57.22.jpeg - -
- - -
- - - - - - -
- -
-
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - Columbus-Portada.png - -
-
- -
- - -
- - - -
-
- - -

Comics

- - - - - - -
-
- - -
- - - - - - -
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - Frida Cuadro 2.jpeg - -
-
- -
- - -
- - - -
-
- - -

Arte

- - - - - - -
-
- - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - c48f065b-2305-4cbc-91fb-4325984858ba.jpg - -
-
- -
- - -
- - - -
-
- - -

Posters

- - - - - - -
-
- - -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- - - - - - - - photo_2019-03-13 11.44.06.png - -
-
- -
- - -
- - - -
-
- - -

Coleccionables

- - - - - - -
-
- - -
- - - - - - -
 
 
-
- -
- -
-
- - - - -
- - - - -
- - -
-
- - - - - \ No newline at end of file diff --git a/.gitea/Muesart/Muesart/urls.py b/.gitea/Muesart/Muesart/urls.py deleted file mode 100644 index bd1321c5..00000000 --- a/.gitea/Muesart/Muesart/urls.py +++ /dev/null @@ -1,18 +0,0 @@ -from django.urls import path -from . import vista - - -urlpatterns = [ - path('', vista.muesart, name='muesart'), - path("muesart/", vista.muesart, name="muesart"), - path("letras-muesart/", vista.letras_muesart, name="letras_muesart"), - path("nuevos-eventos/", vista.nuevos_eventos, name="nuevos_eventos"), - path("aviso-de-privacidad/", vista.aviso_de_privacidad, name="aviso_de_privacidad"), - path("experiencias/", vista.experiencias, name="experiencias"), - path("sobre-nosotros/", vista.sobre_nosotros, name="sobre_nosotros"), - path("sapiens-studios/", vista.sapiens_studios, name="sapiens_studios"), - path("tienda-en-lnea/", vista.tienda_en_lnea, name="tienda_en_lnea"), - path("contacto/", vista.contacto, name="contacto"), - path("nuevo-indice", vista.nuevo_indice, name="nuevo_indice"), - path("experiences", vista.experiences, name="experiences"), -] diff --git a/.gitea/Muesart/Muesart/vista.py b/.gitea/Muesart/Muesart/vista.py deleted file mode 100644 index 9dec41d5..00000000 --- a/.gitea/Muesart/Muesart/vista.py +++ /dev/null @@ -1,34 +0,0 @@ -from django.shortcuts import render - -def muesart(request): - return render(request, "muesart.html") - -def letras_muesart(request): - return render(request, "letras_muesart.html") - -def nuevos_eventos(request): - return render(request, "nuevos_eventos.html") - -def aviso_de_privacidad(request): - return render(request, "avido_de_privacidad.html") - -def experiencias(request): - return render(request, "experiencias.html") - -def sobre_nosotros(request): - return render(request, "sobre_nosotros.html") - -def sapiens_studios(request): - return render(request, "sapiens_studios.html") - -def tienda_en_lnea(request): - return render(request, "tienda_en_lnea.html") - -def contacto(request): - return render(request, "contacto.html") - -def nuevo_indice(request): - return render(request, "nuevo_indice.html") - -def experiences(request): - return render(request, "experiences.html") diff --git a/.gitea/Muesart/Muesart/wsgi.py b/.gitea/Muesart/Muesart/wsgi.py deleted file mode 100644 index 8534dd1d..00000000 --- a/.gitea/Muesart/Muesart/wsgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -WSGI config for Muesart project. - -It exposes the WSGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/ -""" - -import os - -from django.core.wsgi import get_wsgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Muesart.settings') - -application = get_wsgi_application() diff --git a/.gitea/Muesart/db.sqlite3 b/.gitea/Muesart/db.sqlite3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitea/Muesart/manage.py b/.gitea/Muesart/manage.py deleted file mode 100644 index 31d37071..00000000 --- a/.gitea/Muesart/manage.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python -"""Django's command-line utility for administrative tasks.""" -import os -import sys - - -def main(): - """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Muesart.settings') - try: - from django.core.management import execute_from_command_line - except ImportError as exc: - raise ImportError( - "Couldn't import Django. Are you sure it's installed and " - "available on your PYTHONPATH environment variable? Did you " - "forget to activate a virtual environment?" - ) from exc - execute_from_command_line(sys.argv) - - -if __name__ == '__main__': - main()