Skip to content

Commit

Permalink
Ajuste nos arquivos estaticos
Browse files Browse the repository at this point in the history
  • Loading branch information
matheuspdf committed Jun 7, 2024
1 parent 2bd57c8 commit 426bb28
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Binary file added eventex/core/static/fonts/Economica-Regular.ttf
Binary file not shown.
6 changes: 4 additions & 2 deletions eventex/core/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}">

<!-- CSS -->
<!-- <link href='http://fonts.googleapis.com/css?family=Economica:400,700' rel='stylesheet' type='text/css'>-->
<style>
@import url('{% static 'fonts/Economica-Regular.ttf' %}');
</style>
<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}">
<link rel="stylesheet" href="{% static 'css/basalstyle/style.min.css' %}">
<link rel="stylesheet" href="{% static 'css/main.css' %}">

<link href='http://fonts.googleapis.com/css?family=Economica:400,700' rel='stylesheet' type='text/css'>
</head>

<body>
Expand Down
3 changes: 2 additions & 1 deletion eventex/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

ALLOWED_HOSTS = config('ALLOWED_HOSTS', default='', cast=Csv())


DEFAULT_FROM_EMAIL = '[email protected]'

# Application definition
Expand Down Expand Up @@ -130,7 +131,7 @@


# Email configuration
EMAIL_BACKEND = config('EMAIL_BACKEND')
EMAIL_BACKEND = config('EMAIL_BACKEND', default='django.core.mail.backends.smtp.EmailBackend')
EMAIL_HOST = config('EMAIL_HOST')
EMAIL_PORT = config('EMAIL_PORT', cast=int)
EMAIL_USE_TLS = config('EMAIL_USE_TLS', cast=bool)
Expand Down

0 comments on commit 426bb28

Please sign in to comment.