|
3 | 3 | <html lang="en">
|
4 | 4 |
|
5 | 5 | <head>
|
6 |
| - <meta charset="UTF-8" /> |
7 |
| - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
8 |
| - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
9 |
| - <link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}" /> |
10 |
| - <title>ReactPy</title> |
11 |
| - <style> |
12 |
| - iframe { |
13 |
| - width: 100%; |
14 |
| - height: 45px; |
15 |
| - } |
16 |
| - </style> |
| 6 | + <meta charset="UTF-8" /> |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 8 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 9 | + <link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}" /> |
| 10 | + <title>ReactPy</title> |
| 11 | + <style> |
| 12 | + iframe { |
| 13 | + width: 100%; |
| 14 | + height: 45px; |
| 15 | + } |
| 16 | + </style> |
17 | 17 | </head>
|
18 | 18 |
|
19 | 19 | <body>
|
20 |
| - <h1>ReactPy Test Page</h1> |
21 |
| - <hr> |
22 |
| - {% component "test_app.components.hello_world" class="hello-world" %} |
23 |
| - <hr> |
24 |
| - {% component "test_app.components.button" class="button" %} |
25 |
| - <hr> |
26 |
| - {% component "test_app.components.parameterized_component" class="parametarized-component" x=123 y=456 %} |
27 |
| - <hr> |
28 |
| - {% component "test_app.components.object_in_templatetag" my_object %} |
29 |
| - <hr> |
30 |
| - {% component "test_app.components.button_from_js_module" %} |
31 |
| - <hr> |
32 |
| - {% component "test_app.components.use_connection" %} |
33 |
| - <hr> |
34 |
| - {% component "test_app.components.use_scope" %} |
35 |
| - <hr> |
36 |
| - {% component "test_app.components.use_location" %} |
37 |
| - <hr> |
38 |
| - {% component "test_app.components.use_origin" %} |
39 |
| - <hr> |
40 |
| - {% component "test_app.components.django_css" %} |
41 |
| - <hr> |
42 |
| - {% component "test_app.components.django_js" %} |
43 |
| - <hr> |
44 |
| - {% component "test_app.components.unauthorized_user" %} |
45 |
| - <hr> |
46 |
| - {% component "test_app.components.authorized_user" %} |
47 |
| - <hr> |
48 |
| - {% component "test_app.components.relational_query" %} |
49 |
| - <hr> |
50 |
| - {% component "test_app.components.async_relational_query" %} |
51 |
| - <hr> |
52 |
| - {% component "test_app.components.todo_list" %} |
53 |
| - <hr> |
54 |
| - {% component "test_app.components.async_todo_list" %} |
55 |
| - <hr> |
56 |
| - {% component "test_app.components.view_to_component_sync_func" %} |
57 |
| - <hr> |
58 |
| - {% component "test_app.components.view_to_component_async_func" %} |
59 |
| - <hr> |
60 |
| - {% component "test_app.components.view_to_component_sync_class" %} |
61 |
| - <hr> |
62 |
| - {% component "test_app.components.view_to_component_async_class" %} |
63 |
| - <hr> |
64 |
| - {% component "test_app.components.view_to_component_template_view_class" %} |
65 |
| - <hr> |
66 |
| - {% component "test_app.components.view_to_component_script" %} |
67 |
| - <hr> |
68 |
| - {% component "test_app.components.view_to_component_request" %} |
69 |
| - <hr> |
70 |
| - {% component "test_app.components.view_to_component_args" %} |
71 |
| - <hr> |
72 |
| - {% component "test_app.components.view_to_component_kwargs" %} |
73 |
| - <hr> |
74 |
| - {% component "test_app.components.view_to_iframe_sync_func" %} |
75 |
| - <hr> |
76 |
| - {% component "test_app.components.view_to_iframe_async_func" %} |
77 |
| - <hr> |
78 |
| - {% component "test_app.components.view_to_iframe_sync_class" %} |
79 |
| - <hr> |
80 |
| - {% component "test_app.components.view_to_iframe_async_class" %} |
81 |
| - <hr> |
82 |
| - {% component "test_app.components.view_to_iframe_template_view_class" %} |
83 |
| - <hr> |
84 |
| - {% component "test_app.components.view_to_iframe_args" %} |
85 |
| - <hr> |
86 |
| - {% component "test_app.components.use_user_data" %} |
87 |
| - <hr> |
88 |
| - {% component "test_app.components.use_user_data_with_default" %} |
89 |
| - <hr> |
| 20 | + <h1>ReactPy Test Page</h1> |
| 21 | + <hr> |
| 22 | + {% component "test_app.components.hello_world" class="hello-world" %} |
| 23 | + <hr> |
| 24 | + {% component "test_app.components.button" class="button" %} |
| 25 | + <hr> |
| 26 | + {% component "test_app.components.parameterized_component" class="parametarized-component" x=123 y=456 %} |
| 27 | + <hr> |
| 28 | + {% component "test_app.components.object_in_templatetag" my_object %} |
| 29 | + <hr> |
| 30 | + {% component "test_app.components.button_from_js_module" %} |
| 31 | + <hr> |
| 32 | + {% component "test_app.components.use_connection" %} |
| 33 | + <hr> |
| 34 | + {% component "test_app.components.use_scope" %} |
| 35 | + <hr> |
| 36 | + {% component "test_app.components.use_location" %} |
| 37 | + <hr> |
| 38 | + {% component "test_app.components.use_origin" %} |
| 39 | + <hr> |
| 40 | + {% component "test_app.components.django_css" %} |
| 41 | + <hr> |
| 42 | + {% component "test_app.components.django_js" %} |
| 43 | + <hr> |
| 44 | + {% component "test_app.components.unauthorized_user" %} |
| 45 | + <hr> |
| 46 | + {% component "test_app.components.authorized_user" %} |
| 47 | + <hr> |
| 48 | + {% component "test_app.components.relational_query" %} |
| 49 | + <hr> |
| 50 | + {% component "test_app.components.async_relational_query" %} |
| 51 | + <hr> |
| 52 | + {% component "test_app.components.todo_list" %} |
| 53 | + <hr> |
| 54 | + {% component "test_app.components.async_todo_list" %} |
| 55 | + <hr> |
| 56 | + {% component "test_app.components.view_to_component_sync_func" %} |
| 57 | + <hr> |
| 58 | + {% component "test_app.components.view_to_component_async_func" %} |
| 59 | + <hr> |
| 60 | + {% component "test_app.components.view_to_component_sync_class" %} |
| 61 | + <hr> |
| 62 | + {% component "test_app.components.view_to_component_async_class" %} |
| 63 | + <hr> |
| 64 | + {% component "test_app.components.view_to_component_template_view_class" %} |
| 65 | + <hr> |
| 66 | + {% component "test_app.components.view_to_component_script" %} |
| 67 | + <hr> |
| 68 | + {% component "test_app.components.view_to_component_request" %} |
| 69 | + <hr> |
| 70 | + {% component "test_app.components.view_to_component_args" %} |
| 71 | + <hr> |
| 72 | + {% component "test_app.components.view_to_component_kwargs" %} |
| 73 | + <hr> |
| 74 | + {% component "test_app.components.view_to_iframe_sync_func" %} |
| 75 | + <hr> |
| 76 | + {% component "test_app.components.view_to_iframe_async_func" %} |
| 77 | + <hr> |
| 78 | + {% component "test_app.components.view_to_iframe_sync_class" %} |
| 79 | + <hr> |
| 80 | + {% component "test_app.components.view_to_iframe_async_class" %} |
| 81 | + <hr> |
| 82 | + {% component "test_app.components.view_to_iframe_template_view_class" %} |
| 83 | + <hr> |
| 84 | + {% component "test_app.components.view_to_iframe_args" %} |
| 85 | + <hr> |
| 86 | + {% component "test_app.components.use_user_data" %} |
| 87 | + <hr> |
| 88 | + {% component "test_app.components.use_user_data_with_default" %} |
| 89 | + <hr> |
| 90 | + {% component "test_app.components.use_auth" %} |
| 91 | + <hr> |
| 92 | + {% component "test_app.components.use_auth_no_rerender" %} |
| 93 | + <hr> |
| 94 | + {% component "test_app.components.use_rerender" %} |
| 95 | + <hr> |
90 | 96 | </body>
|
91 | 97 |
|
92 | 98 | </html>
|
0 commit comments