Create base views to all the services.

This commit is contained in:
Santiago Lamora 2019-10-30 14:35:30 +01:00
parent 02167a9faa
commit 8875e160f2
5 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{% extends "musician/base.html" %}
{% load i18n %}
{% block content %}
<h1>Section title</h1>
<p>Little description of what to be expected...</p>
{% endblock %}

View File

@ -0,0 +1,9 @@
{% extends "musician/base.html" %}
{% load i18n %}
{% block content %}
<h1>Section title</h1>
<p>Little description of what to be expected...</p>
{% endblock %}

View File

@ -0,0 +1,9 @@
{% extends "musician/base.html" %}
{% load i18n %}
{% block content %}
<h1>Section title</h1>
<p>Little description of what to be expected...</p>
{% endblock %}

View File

@ -0,0 +1,9 @@
{% extends "musician/base.html" %}
{% load i18n %}
{% block content %}
<h1>Section title</h1>
<p>Little description of what to be expected...</p>
{% endblock %}

View File

@ -15,4 +15,8 @@ urlpatterns = [
path('auth/login/', views.LoginView.as_view(), name='login'),
path('auth/logout/', views.LogoutView.as_view(), name='logout'),
path('dashboard/', views.DashboardView.as_view(), name='dashboard'),
path('mails/', views.MailView.as_view(), name='mails'),
path('maling-lists/', views.MailingListsView.as_view(), name='mailing-lists'),
path('databases/', views.DatabasesView.as_view(), name='databases'),
path('software-as-a-service/', views.SaasView.as_view(), name='saas'),
]