Feat: Multiplayer sessions added using CRUD database.
This commit is contained in:
22
models/model_view_accessibility_report.py
Normal file
22
models/model_view_accessibility_report.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""
|
||||
Project: PARTS Website
|
||||
Author: Edward Middleton-Smith
|
||||
Precision And Research Technology Systems Limited
|
||||
|
||||
Technology: Legal View Models
|
||||
Feature: Accessibility Report View Model
|
||||
|
||||
Description:
|
||||
Data model for accessibility report view
|
||||
"""
|
||||
|
||||
# internal
|
||||
from models.model_view_base import Model_View_Base
|
||||
# from routes import bp_home
|
||||
# external
|
||||
|
||||
class Model_View_Accessibility_Report(Model_View_Base):
|
||||
def __init__(self, hash_page_current=Model_View_Base.HASH_PAGE_ACCESSIBILITY_REPORT):
|
||||
super().__init__(hash_page_current=hash_page_current)
|
||||
self._title = 'Accessibility Report'
|
||||
|
||||
Reference in New Issue
Block a user