No edit summary |
|||
(12 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{TOC | {{TOC right}} | ||
This is a test for the new server | |||
==Sortable tables== | ==Sortable tables== | ||
Line 34: | Line 36: | ||
|} | |} | ||
== | == Tooltips == | ||
{{#tip-text: text | tooltip-text}} {{#tip-info: icon tooltip text}} | {{#tip-text: text | tooltip-text}} {{#tip-info: icon tooltip text}} | ||
{{#tip-img: images/8/84/IM_Package_Value_set.jpg | image tooltip}} | {{#tip-img: images/8/84/IM_Package_Value_set.jpg | image tooltip}} | ||
==Text colour== | |||
Set '''text''' color by using | Set '''text''' color by using | ||
<span style="color:#FF0000">This text will be red</span> | <span style="color:#FF0000">This text will be red</span> | ||
==External document links== | |||
This is a test link to a google drive document > DDS Wiki > Public documents > [https://drive.google.com/file/d/1ZhuPIySPCv-gvHBepXbGogk7wtv42VgQ/view?usp=sharing test xls link] | This is a test link to a google drive document > DDS Wiki > Public documents > [https://drive.google.com/file/d/1ZhuPIySPCv-gvHBepXbGogk7wtv42VgQ/view?usp=sharing test xls link] | ||
Line 120: | Line 123: | ||
</ol> | </ol> | ||
<br /> | <br /> | ||
=Tables= | ==Tables== | ||
{| class="mw-collapsible" border="1" cellpadding="1" cellspacing="1" style="width: 500px;" summary="Summary" | {| class="mw-collapsible" border="1" cellpadding="1" cellspacing="1" style="width: 500px;" summary="Summary" | ||
Line 153: | Line 156: | ||
</div> | </div> | ||
=Syntax Highlight= | ==Syntax Highlight== | ||
== SQL== | === SQL=== | ||
This section should be highlighted source code (SQL) | This section should be highlighted source code (SQL) | ||
<syntaxhighlight lang="SQL">SELECT * | <syntaxhighlight lang="SQL">SELECT * | ||
Line 161: | Line 164: | ||
WHERE patient_id = 1234 </syntaxhighlight> | WHERE patient_id = 1234 </syntaxhighlight> | ||
==JSON== | ===JSON=== | ||
<syntaxhighlight lang="JSON"> | <syntaxhighlight lang="JSON"> | ||
{ | { | ||
Line 169: | Line 172: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Java== | ===Java=== | ||
<syntaxhighlight lang="java"> | <syntaxhighlight lang="java"> | ||
public class Test { | public class Test { | ||
Line 278: | Line 281: | ||
|} | |} | ||
| == Expanding text == | ||
<div class="toccolours mw-collapsible mw-collapsed"> | <div class="toccolours mw-collapsible mw-collapsed"> | ||
This text is not collapsible; but the next is collapsible and hidden by default: | This text is not collapsible; but the next is collapsible and hidden by default: | ||
Line 303: | Line 305: | ||
| alt2 = Red cartouche | | alt2 = Red cartouche | ||
}} | }} | ||
==Font awesome== | |||
Font Awesome | Font Awesome | ||
{{# | {{#fas:cloud}} |
Latest revision as of 16:50, 13 November 2024
This is a test for the new server
Sortable tables
Updated | Issue | Summary | Status | Sites affected | Subscribers affected | STP |
---|---|---|---|---|---|---|
21 January 2021 | COVID-19 vaccinations | How long does it take to get the COVID-19 vaccination notifications into the patient records in EMIS Web?
EMIS have informed us that "data is collected by NHS Digital at 22:00 each day, comprising all vaccination data received in that last 24 hour period. NHS Digital send us this data the following day and we will perform a daily upload of these vaccination notifications during that afternoon." |
Ongoing | xxxx | xxxxx | xxxx |
13 May 2020 |
Tooltips
text
Text colour
Set text color by using
This text will be red
External document links
This is a test link to a google drive document > DDS Wiki > Public documents > test xls link
This is some test text...
Images
Image preview tooltip
This is a link to an image with a preview on tooltip
this is some content other
Note/Warning/Info/Tip/Question
This is a warning. |
This is a note. |
This is some info. |
This is a tip. |
This is a question. |
Ordered lists
- About the author
- Foreword to the first edition
- Foreword to the second edition
- test
- About the author
- Foreword to the first edition
- Foreword to the second edition
- About the author
- Foreword to the first edition
- Foreword to the second edition
- About the author
- Foreword to the first edition
- Foreword to the second edition
Tables
Code | Term |
---|---|
H33.. |
Asthma |
G33..
|
Diabetes |
Code | Term |
---|---|
H33.. | Asthma |
G33.. | Diabetes |
This text is not collapsible; but the next is collapsible and hidden by default:
Syntax Highlight
SQL
This section should be highlighted source code (SQL)
SELECT *
FROM observation
WHERE patient_id = 1234
JSON
{
"iri" : ":DM_RecordModel",
"status" : "Active"
}
Java
public class Test {
private int _id;
public String name;
}
this is Jo's test open office to mediawiki:
1. Table: allergy_intolerance
PRIMARY KEY (organization_id,person_id,id)
Column name | Data type | Constraint | Comments | References |
---|---|---|---|---|
id | bigint(20) | NOT NULL |
|
|
organization_id | bigint(20) | NOT NULL | Owning organisation (i.e. publisher) | organization.id |
patient_id | bigint(20) | NOT NULL | The organisations record for this person’s registration. Patients may have multiple records across clinical systems and may have registered at an organisation multiple times | patient.id |
person_id | bigint(20) | NOT NULL | Unique individual across all organisations | person.id |
encounter_id | bigint(20) | DEFAULT NULL |
|
encounter.id |
practitioner_id | bigint(20) | DEFAULT NULL | The clinician the activity is recorded against | practitioner.id |
clinical_effective_date | date | DEFAULT NULL | The date the clinical code is recorded for | |
date_precision_id | smallint(6) | DEFAULT NULL | Identifies the precision of the clinical effectiveness date to either year (1) month (2) day (5) minute (12) second (13) millisecond (14) | |
snomed_concept_id | bigint(20) | DEFAULT NULL | The SNOMED code | |
original_code | varchar(100) CHARACTER SET utf8 COLLATE utf8_bin | DEFAULT NULL | The original code from the source system | |
original_term | varchar(1000) | DEFAULT NULL | The original code term from the source system | |
is_review | tinyint(1) | NOT NULL | Is this instance of the code a review of a previous encounter | |
PRIMARY KEY (organization_id,person_id,id), | ||||
UNIQUE KEY allergy_intolerance_id (id), | ||||
KEY allergy_intolerance_patient_id (patient_id), | ||||
KEY allergy_intolerance_snomed_concept_id (snomed_concept_id) | ||||
Expanding text
This text is not collapsible; but the next is collapsible and hidden by default:
{
"iri" : ":DM_RecordModel",
"status" : "Active"
}
Font awesome
Font Awesome