1. User login and barebones account section added.

This commit is contained in:
2024-08-04 21:32:42 +01:00
parent 6ad86825ea
commit 514289bc21
2328 changed files with 292462 additions and 758 deletions

View File

@@ -0,0 +1,27 @@
"""
Project: PARTS Website
Author: Edward Middleton-Smith
Precision And Research Technology Systems Limited
Technology: View Models
Feature: Services View Model
Description:
Data model for services view
"""
# internal
from models.model_view_base import Model_View_Base
# from routes import bp_home
# external
class Model_View_Services(Model_View_Base):
# Attributes
@property
def title(self):
return 'Services'
def __init__(self, app, db):
# Constructor
super().__init__(app=app, db=db)