Skip to content

Commit

Permalink
Fixing language
Browse files Browse the repository at this point in the history
  • Loading branch information
davetaz committed Sep 18, 2024
1 parent 3f70463 commit 116f8a7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This model assesses an organisation's maturity in publishing and using open data
### 2. Data Ethics Maturity Model (Coming Soon)
This model will help organisations assess their maturity in handling data ethically, ensuring that data practices are aligned with ethical standards.

### 3. Data Practices Maturity Assessment (Coming Soon)
### 3. Data Practices Maturity Model
This assessment will evaluate an organisation's data practices across key areas of data governance and management.

## Installation
Expand Down
2 changes: 1 addition & 1 deletion private/assessments/DPAT2024.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Data Practices Maturity Model (2024)",
"description": "<p>The Data Practices Maturity Assessment offers a comprehensive framework designed to establish and showcase an organisation's trustworthiness in its data practices—whether it's creating, using, or sharing data. This tool also enhances the dialogue between technical teams and strategic leadership, ensuring that all data practices are fully aligned with organisational objectives and ethical standards.</p>",
"description": "<p>The Data Practices Maturity Model offers a comprehensive framework designed to establish and showcase an organisation's trustworthiness in its data practices—whether it's creating, using, or sharing data. This tool also enhances the dialogue between technical teams and strategic leadership, ensuring that all data practices are fully aligned with organisational objectives and ethical standards.</p>",
"owner": "[email protected]",
"organisation": {
"name": "The Open Data Institute",
Expand Down
6 changes: 3 additions & 3 deletions views/pages/home.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
</p>
</div>
<div class="assessment-item">
<img src="/images/data-practices-maturity.png" alt="Data Practices Maturity Assessment" class="assessment-image"/>
<h3>Data Practices Maturity Assessment</h3>
<img src="/images/data-practices-maturity.png" alt="Data Practices Maturity Model" class="assessment-image"/>
<h3>Data Practices Maturity Model</h3>
<p>
The Data Practices Maturity Assessment offers a comprehensive framework designed to establish and showcase an organisation's trustworthiness in its data practices—whether it's creating, using, or sharing data. This tool also enhances the dialogue between technical teams and strategic leadership, ensuring that all data practices are fully aligned with organisational objectives and ethical standards.
The Data Practices Maturity Model offers a comprehensive framework designed to establish and showcase an organisation's trustworthiness in its data practices—whether it's creating, using, or sharing data. This tool also enhances the dialogue between technical teams and strategic leadership, ensuring that all data practices are fully aligned with organisational objectives and ethical standards.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion views/pages/projects/new.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
.then(response => response.json())
.then(assessments => {
// Create the assessment dropdown
const assessmentLabel = $('<label for="assessmentSelect" class="form-control">Assessment</label>');
const assessmentLabel = $('<label for="assessmentSelect" class="form-control">Model</label>');
const assessmentDropdown = $('<select id="assessmentSelect" class="form-control"></select>');
assessmentDropdown.append('<option value="">Select model</option>');
Expand Down
10 changes: 5 additions & 5 deletions views/pages/projects/view.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
<div class="content-block light-grey">
<div style="text-align: center; width: 100%;">
<br/>
<button class="transparent" onclick="window.location.href='/projects/new'">Start a new evaluation</button>
<button class="transparent" onclick="window.location.href='/projects/new'">Start a new assessment</button>
</div>
</div>
<div class="content-block white">
<h1>My evaluations</h1>
<h1>My assessments</h1>
<table id="myProjectsTable" class="display" style="width:100%"></table>
</div>
<div class="content-block light-grey">
<h1>Evaluations shared with me</h1>
<h1>Assessments shared with me</h1>
<table id="sharedProjectsTable" class="display" style="width:100%"></table>
</div>
</div>
Expand Down Expand Up @@ -95,7 +95,7 @@ function renderMyProjects() {
},
{
data: 'assessment.title',
title: 'Assessment',
title: 'Model',
width: '10%',
defaultContent: ''
},
Expand Down Expand Up @@ -275,7 +275,7 @@ function renderSharedProjects(data) {
},
{
data: 'assessment.title',
title: 'Assessment',
title: 'Model',
width: '10%',
defaultContent: ''
},
Expand Down
2 changes: 1 addition & 1 deletion views/partials/header.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<nav class="main-nav" aria-label="Main Menu">
<ul>
<% if(user) { %>
<li><a href="/projects" class="toggle-link <% if (page.link === '/projects') { %>selected<% } %>">Evaluations dashboard</a></li>
<li><a href="/projects" class="toggle-link <% if (page.link === '/projects') { %>selected<% } %>">Assessments dashboard</a></li>
<% if (user.authMethod === 'google') { %>
<!--<li><a href="/auth/local/reset-password">View/Change local password</a></li>-->
<% } %>
Expand Down

0 comments on commit 116f8a7

Please sign in to comment.