- New yearly app with empty Year page - Year button with chart icon in both mobile and desktop nav - Positioned between Month and Settings
9 lines
135 B
Python
9 lines
135 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "yearly"
|
|
|
|
urlpatterns = [
|
|
path("", views.year_view, name="year_view"),
|
|
]
|