├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── apps ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── core │ │ │ ├── base.html │ │ │ ├── frontpage.html │ │ │ ├── login.html │ │ │ ├── plans.html │ │ │ ├── privacy.html │ │ │ ├── signup.html │ │ │ └── terms.html │ ├── tests.py │ └── views.py ├── dashboard │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── dashboard │ │ │ ├── dashboard.html │ │ │ └── view_user.html │ ├── templatetags │ │ ├── __init__.py │ │ └── dashboardextras.py │ ├── tests.py │ ├── urls.py │ ├── utilities.py │ └── views.py ├── project │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── apps.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_task.py │ │ ├── 0003_entry.py │ │ ├── 0004_auto_20201126_1920.py │ │ ├── 0005_auto_20201206_1924.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── project │ │ │ ├── edit_entry.html │ │ │ ├── edit_project.html │ │ │ ├── edit_task.html │ │ │ ├── project.html │ │ │ ├── projects.html │ │ │ ├── task.html │ │ │ └── track_entry.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── team │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── apps.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_invitation.py │ │ ├── 0003_plan.py │ │ ├── 0004_auto_20201209_1955.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── team │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── email_accepted_invitation.html │ │ │ ├── email_invitation.html │ │ │ ├── invite.html │ │ │ ├── plans.html │ │ │ ├── plans_thankyou.html │ │ │ └── team.html │ ├── tests.py │ ├── urls.py │ ├── utilities.py │ └── views.py └── userprofile │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201122_1210.py │ ├── 0003_userprofile_avatar.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── userprofile │ │ ├── accept_invitation.html │ │ ├── edit_profile.html │ │ └── myaccount.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── media └── uploads │ └── avatars │ └── lamp.jpeg ├── minutos ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── scripts └── check_subscriptions.py ├── serverfiles ├── gunicorn_start ├── nginx_minutos.conf └── supervisor_minutos.conf └── static ├── .DS_Store └── images ├── .DS_Store ├── avatar.png ├── features-happyboss.jpg ├── features-team.jpg └── features-tracktime.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/README.md -------------------------------------------------------------------------------- /apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/admin.py -------------------------------------------------------------------------------- /apps/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/apps.py -------------------------------------------------------------------------------- /apps/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/models.py -------------------------------------------------------------------------------- /apps/core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/templates/core/base.html -------------------------------------------------------------------------------- /apps/core/templates/core/frontpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/templates/core/frontpage.html -------------------------------------------------------------------------------- /apps/core/templates/core/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/templates/core/login.html -------------------------------------------------------------------------------- /apps/core/templates/core/plans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/templates/core/plans.html -------------------------------------------------------------------------------- /apps/core/templates/core/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/templates/core/privacy.html -------------------------------------------------------------------------------- /apps/core/templates/core/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/templates/core/signup.html -------------------------------------------------------------------------------- /apps/core/templates/core/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/templates/core/terms.html -------------------------------------------------------------------------------- /apps/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/tests.py -------------------------------------------------------------------------------- /apps/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/core/views.py -------------------------------------------------------------------------------- /apps/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/admin.py -------------------------------------------------------------------------------- /apps/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/apps.py -------------------------------------------------------------------------------- /apps/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/models.py -------------------------------------------------------------------------------- /apps/dashboard/templates/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/templates/dashboard/dashboard.html -------------------------------------------------------------------------------- /apps/dashboard/templates/dashboard/view_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/templates/dashboard/view_user.html -------------------------------------------------------------------------------- /apps/dashboard/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/templatetags/dashboardextras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/templatetags/dashboardextras.py -------------------------------------------------------------------------------- /apps/dashboard/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/tests.py -------------------------------------------------------------------------------- /apps/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/urls.py -------------------------------------------------------------------------------- /apps/dashboard/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/utilities.py -------------------------------------------------------------------------------- /apps/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/dashboard/views.py -------------------------------------------------------------------------------- /apps/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/project/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/admin.py -------------------------------------------------------------------------------- /apps/project/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/api.py -------------------------------------------------------------------------------- /apps/project/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/apps.py -------------------------------------------------------------------------------- /apps/project/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/context_processors.py -------------------------------------------------------------------------------- /apps/project/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/project/migrations/0002_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/migrations/0002_task.py -------------------------------------------------------------------------------- /apps/project/migrations/0003_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/migrations/0003_entry.py -------------------------------------------------------------------------------- /apps/project/migrations/0004_auto_20201126_1920.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/migrations/0004_auto_20201126_1920.py -------------------------------------------------------------------------------- /apps/project/migrations/0005_auto_20201206_1924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/migrations/0005_auto_20201206_1924.py -------------------------------------------------------------------------------- /apps/project/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/models.py -------------------------------------------------------------------------------- /apps/project/templates/project/edit_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/templates/project/edit_entry.html -------------------------------------------------------------------------------- /apps/project/templates/project/edit_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/templates/project/edit_project.html -------------------------------------------------------------------------------- /apps/project/templates/project/edit_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/templates/project/edit_task.html -------------------------------------------------------------------------------- /apps/project/templates/project/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/templates/project/project.html -------------------------------------------------------------------------------- /apps/project/templates/project/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/templates/project/projects.html -------------------------------------------------------------------------------- /apps/project/templates/project/task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/templates/project/task.html -------------------------------------------------------------------------------- /apps/project/templates/project/track_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/templates/project/track_entry.html -------------------------------------------------------------------------------- /apps/project/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/tests.py -------------------------------------------------------------------------------- /apps/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/urls.py -------------------------------------------------------------------------------- /apps/project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/project/views.py -------------------------------------------------------------------------------- /apps/team/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/team/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/admin.py -------------------------------------------------------------------------------- /apps/team/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/api.py -------------------------------------------------------------------------------- /apps/team/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/apps.py -------------------------------------------------------------------------------- /apps/team/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/context_processors.py -------------------------------------------------------------------------------- /apps/team/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/team/migrations/0002_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/migrations/0002_invitation.py -------------------------------------------------------------------------------- /apps/team/migrations/0003_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/migrations/0003_plan.py -------------------------------------------------------------------------------- /apps/team/migrations/0004_auto_20201209_1955.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/migrations/0004_auto_20201209_1955.py -------------------------------------------------------------------------------- /apps/team/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/team/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/models.py -------------------------------------------------------------------------------- /apps/team/templates/team/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/add.html -------------------------------------------------------------------------------- /apps/team/templates/team/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/edit.html -------------------------------------------------------------------------------- /apps/team/templates/team/email_accepted_invitation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/email_accepted_invitation.html -------------------------------------------------------------------------------- /apps/team/templates/team/email_invitation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/email_invitation.html -------------------------------------------------------------------------------- /apps/team/templates/team/invite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/invite.html -------------------------------------------------------------------------------- /apps/team/templates/team/plans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/plans.html -------------------------------------------------------------------------------- /apps/team/templates/team/plans_thankyou.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/plans_thankyou.html -------------------------------------------------------------------------------- /apps/team/templates/team/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/templates/team/team.html -------------------------------------------------------------------------------- /apps/team/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/tests.py -------------------------------------------------------------------------------- /apps/team/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/urls.py -------------------------------------------------------------------------------- /apps/team/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/utilities.py -------------------------------------------------------------------------------- /apps/team/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/team/views.py -------------------------------------------------------------------------------- /apps/userprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/userprofile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/admin.py -------------------------------------------------------------------------------- /apps/userprofile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/apps.py -------------------------------------------------------------------------------- /apps/userprofile/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/userprofile/migrations/0002_auto_20201122_1210.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/migrations/0002_auto_20201122_1210.py -------------------------------------------------------------------------------- /apps/userprofile/migrations/0003_userprofile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/migrations/0003_userprofile_avatar.py -------------------------------------------------------------------------------- /apps/userprofile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/userprofile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/models.py -------------------------------------------------------------------------------- /apps/userprofile/templates/userprofile/accept_invitation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/templates/userprofile/accept_invitation.html -------------------------------------------------------------------------------- /apps/userprofile/templates/userprofile/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/templates/userprofile/edit_profile.html -------------------------------------------------------------------------------- /apps/userprofile/templates/userprofile/myaccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/templates/userprofile/myaccount.html -------------------------------------------------------------------------------- /apps/userprofile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/tests.py -------------------------------------------------------------------------------- /apps/userprofile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/urls.py -------------------------------------------------------------------------------- /apps/userprofile/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/apps/userprofile/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/manage.py -------------------------------------------------------------------------------- /media/uploads/avatars/lamp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/media/uploads/avatars/lamp.jpeg -------------------------------------------------------------------------------- /minutos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minutos/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/minutos/asgi.py -------------------------------------------------------------------------------- /minutos/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/minutos/settings.py -------------------------------------------------------------------------------- /minutos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/minutos/urls.py -------------------------------------------------------------------------------- /minutos/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/minutos/wsgi.py -------------------------------------------------------------------------------- /scripts/check_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/scripts/check_subscriptions.py -------------------------------------------------------------------------------- /serverfiles/gunicorn_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/serverfiles/gunicorn_start -------------------------------------------------------------------------------- /serverfiles/nginx_minutos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/serverfiles/nginx_minutos.conf -------------------------------------------------------------------------------- /serverfiles/supervisor_minutos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/serverfiles/supervisor_minutos.conf -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /static/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/static/images/.DS_Store -------------------------------------------------------------------------------- /static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/static/images/avatar.png -------------------------------------------------------------------------------- /static/images/features-happyboss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/static/images/features-happyboss.jpg -------------------------------------------------------------------------------- /static/images/features-team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/static/images/features-team.jpg -------------------------------------------------------------------------------- /static/images/features-tracktime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/minutos/HEAD/static/images/features-tracktime.jpg --------------------------------------------------------------------------------