Skip to content
Snippets Groups Projects
Commit aa9e3e11 authored by Julian's avatar Julian
Browse files

add a crude widgets.py to remove later

parent 306a67d3
No related branches found
No related tags found
1 merge request!140Merge two dashboard-feeds branches to one
Pipeline #615 failed
from django.utils.translation import gettext_lazy as _
def myplan_dashboard(request):
context = {
"title": _("My plan for today"),
}
return context
def calendar_dashboard(request):
context = {
"title": _("Current events"),
}
return context
def wordpress_dashboard(request):
context = {
"title": _("News "),
}
return context
WIDGETS = [
(_("Your plan"),)
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment