diff --git a/django_v4/test_app/templates/test_app/base.html b/django_v4/test_app/templates/test_app/base.html index a8fd178e2131052ef472a7862fb52aa067400230..97cec72c7f28017c7a8b93045f097b522301da9b 100644 --- a/django_v4/test_app/templates/test_app/base.html +++ b/django_v4/test_app/templates/test_app/base.html @@ -4,7 +4,7 @@ <head> <meta charset="utf-8"/> <title> - Django v4.1 - + Django v4.2 - {% block title %} Test App Title {% endblock title %} @@ -28,7 +28,7 @@ {% block body %} <h1> {% block page_header %} - Django v4.1 - Test Page Header + Django v4.2 - Test Page Header {% endblock page_header %} </h1> diff --git a/django_v4/test_app/templates/test_app/group_check.html b/django_v4/test_app/templates/test_app/group_check.html index ace4337a8290dcddd870f5ed665b57844ca7ca97..4a41aceca116e6d13395235d1be3b3c35e4d5fff 100644 --- a/django_v4/test_app/templates/test_app/group_check.html +++ b/django_v4/test_app/templates/test_app/group_check.html @@ -2,7 +2,7 @@ {% block page_header %} - Django LTS v4.1 - Test Group Check + Django LTS v4.2 - Test Group Check {% endblock page_header %} diff --git a/django_v4/test_app/templates/test_app/index.html b/django_v4/test_app/templates/test_app/index.html index 0b5fd71a5ac21ebde236bbe4814f035303c29dbc..199ed9a8b9f3420248f2b8099fd1726a95c1ec0e 100644 --- a/django_v4/test_app/templates/test_app/index.html +++ b/django_v4/test_app/templates/test_app/index.html @@ -1,7 +1,7 @@ {% extends "test_app/base.html" %} {% block page_header %} - Django LTS v4.1 - Test App Index + Django LTS v4.2 - Test App Index {% endblock page_header %} @@ -9,16 +9,37 @@ <p>Test Page Content</p> <ul> <li> - <p><a href="{% url 'root_project_home_page:index' %}">Back to Django v2.2 Home</a></p> + <p>Standard Views:</p> + <ul> + <li> + <p><a href="{% url 'root_project_home_page:index' %}">Back to Django v4.2 Home</a></p> + </li> + <li> + <p><a href="{% url 'test_app:view_with_login_check' %}">Test App - Login Check Page</a></p> + </li> + <li> + <p><a href="{% url 'test_app:view_with_permission_check' %}">Test App - Permission Check Page</a></p> + </li> + <li> + <p><a href="{% url 'test_app:view_with_group_check' %}">Test App - Group Check Page</a></p> + </li> + </ul> </li> <li> - <p><a href="{% url 'test_app:view_with_login_check' %}">Test App - Login Check Page</a></p> - </li> - <li> - <p><a href="{% url 'test_app:view_with_permission_check' %}">Test App - Permission Check Page</a></p> - </li> - <li> - <p><a href="{% url 'test_app:view_with_group_check' %}">Test App - Group Check Page</a></p> + <p>API Views:</p> + <ul> + <li> + <p><a href="{% url 'test_app:api_parse' %}">API Parse - Send API requests here to parse them.</a></p> + </li> + <li> + <p><a href="{% url 'test_app:api_display' %}">API Display - View parsed API requests here.</a></p> + <p> + Note: Only displays the first received API request since last access of api_display view. + <br> + All parsed API data is purged after page access. + </p> + </li> + </ul> </li> </ul> {% endblock content %} diff --git a/django_v4/test_app/templates/test_app/login_check.html b/django_v4/test_app/templates/test_app/login_check.html index 9fea01347e4af40aad36916adb73990b4f778337..35f9971c027a5503940490deb3f26b6eee337ca5 100644 --- a/django_v4/test_app/templates/test_app/login_check.html +++ b/django_v4/test_app/templates/test_app/login_check.html @@ -2,7 +2,7 @@ {% block page_header %} - Django LTS v4.1 - Test Login Check + Django LTS v4.2 - Test Login Check {% endblock page_header %} diff --git a/django_v4/test_app/templates/test_app/permission_check.html b/django_v4/test_app/templates/test_app/permission_check.html index f6a7a7d003e9b89dc6165fc1805ed41fb7ccd16c..336a97e87abc8fd0f090e145d75952766e9838cf 100644 --- a/django_v4/test_app/templates/test_app/permission_check.html +++ b/django_v4/test_app/templates/test_app/permission_check.html @@ -2,7 +2,7 @@ {% block page_header %} - Django LTS v4.1 - Test Permission Check + Django LTS v4.2 - Test Permission Check {% endblock page_header %} diff --git a/django_v4/test_app/templates/test_app/root_project_home_page.html b/django_v4/test_app/templates/test_app/root_project_home_page.html index 6ed4a44e377ebc14657f64ad843e075cc8aab30e..391ab4f443a0596ee011ee9d9e0aa3ddd817d3c3 100644 --- a/django_v4/test_app/templates/test_app/root_project_home_page.html +++ b/django_v4/test_app/templates/test_app/root_project_home_page.html @@ -2,16 +2,10 @@ {% block page_header %} - Django Testing Sandbox - LTS v4.1 + Django Testing Sandbox - LTS v4.2 {% endblock page_header %} -{% block page_subheader %} - OFFICIAL 4.2 LTS NOT YET OUT. Releases April 2023.<br> - Official LTS Support ends in April 2026 -{% endblock page_subheader %} - - {% block content %} <hr>