47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
"""
|
|
Education Routes
|
|
================
|
|
|
|
Platforma Edukacyjna - materiały szkoleniowe dla członków Norda Biznes.
|
|
"""
|
|
|
|
from flask import render_template
|
|
from flask_login import login_required
|
|
|
|
from . import bp
|
|
|
|
|
|
@bp.route('/', endpoint='education_index')
|
|
@login_required
|
|
def index():
|
|
"""Strona główna Platformy Edukacyjnej."""
|
|
materials = [
|
|
{
|
|
'id': 1,
|
|
'title': 'Wprowadzenie do Norda Biznes Partner',
|
|
'description': 'Krótka prezentacja portalu - poznaj główne funkcje i możliwości platformy.',
|
|
'type': 'video',
|
|
'duration': '30 sek',
|
|
'status': 'available',
|
|
'video_url': 'videos/nordabiz-zajawka-final.mp4'
|
|
},
|
|
{
|
|
'id': 3,
|
|
'title': 'Skuteczny networking w Izbie',
|
|
'description': 'Najlepsze praktyki nawiązywania kontaktów biznesowych.',
|
|
'type': 'article',
|
|
'duration': '10 min czytania',
|
|
'status': 'coming_soon'
|
|
},
|
|
{
|
|
'id': 4,
|
|
'title': 'Tworzenie atrakcyjnego profilu firmy',
|
|
'description': 'Jak uzupełnić profil żeby przyciągnąć partnerów biznesowych.',
|
|
'type': 'guide',
|
|
'duration': '8 min czytania',
|
|
'status': 'coming_soon'
|
|
},
|
|
]
|
|
|
|
return render_template('education/index.html', materials=materials)
|