updated missing page titles
This commit is contained in:
parent
d913e816b5
commit
4d8cf26c54
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :main_class, "intro_tpl"
|
||||
content_for :title, "Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<h1>Admin Login</h1>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :main_class, "intro_tpl"
|
||||
content_for :title, "Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<h1>Password Reset</h1>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :main_class, "intro_tpl"
|
||||
content_for :title, "Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<h1>Password Reset</h1>
|
||||
|
@ -1,3 +1,7 @@
|
||||
<%
|
||||
content_for :title, "Edit Candidate - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<main class="intro_tpl">
|
||||
<h1>Edit: <%= @candidate.name %></h1>
|
||||
<p><strong>Test ID: </strong><%= @candidate.test_hash %></p>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Candidates"
|
||||
content_for :title, "Candidates - Skills Assessment Admin"
|
||||
%>
|
||||
<main class="summary_tpl">
|
||||
<%= link_to(admin_new_candidate_path, { class: 'secondary-btn' }) do %>
|
||||
|
@ -1,3 +1,7 @@
|
||||
<%
|
||||
content_for :title, "New Candidate - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<main class="intro_tpl">
|
||||
<h1>New Candidate</h1>
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Edit: #{@user.name}"
|
||||
content_for :title, "Profile - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<%= render partial: 'shared/form_model_errors', locals: {obj: @user} %>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Profile"
|
||||
content_for :title, "Profile - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<p>Name: <%= current_user.name %></p>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Questions"
|
||||
content_for :title, "Edit Question - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<h1><%= @question.quiz.name %></h1>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Questions"
|
||||
content_for :title, "Questions - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<% quizzes = @questions.group_by{ |q| q.quiz.name } %>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "New Question"
|
||||
content_for :title, "New Question - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<%= render partial: 'form', locals: {question: @question, action: admin_create_question_path } %>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Question for #{@question.quiz.name}"
|
||||
content_for :title, "Question - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Quizzes"
|
||||
content_for :title, "Quizzes - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<%= render partial: 'admin/quiz/table_list', locals: { quizzes: @quizzes } %>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "New Quiz"
|
||||
content_for :title, "New Quiz - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<%= render partial: 'form', locals: { quiz: @quiz, action: admin_create_quiz_path } %>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "#{@quiz.name}"
|
||||
content_for :title, "Quiz - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<p><%= @quiz.name %></p>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<%
|
||||
content_for :section_title, "Completed Tests"
|
||||
content_for :title, "Quiz Results - Skills Assessment Admin"
|
||||
%>
|
||||
<main class="summary_tpl">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
|
@ -1,3 +1,7 @@
|
||||
<%
|
||||
content_for :title, "Quiz Review - Skills Assessment Admin"
|
||||
%>
|
||||
|
||||
<main class="summary_tpl">
|
||||
<h2 class="prft-heading">Quiz Review</h2>
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
<% content_for :title, "Skills Assessment" %>
|
||||
|
||||
<main class="intro_tpl">
|
||||
<h1 class="prft-heading">Oops!</h1>
|
||||
<p>
|
||||
|
@ -1,3 +1,4 @@
|
||||
<% content_for :title, "Saved! - Skills Assessment" %>
|
||||
<main class="styleguide_tpl">
|
||||
<p>
|
||||
Your test results have been saved. You can visit again later with your Test ID to complete
|
||||
|
@ -1,3 +1,4 @@
|
||||
<% content_for :title, "Thank You - Skills Assessment" %>
|
||||
<main class="styleguide_tpl">
|
||||
<h1>Thank you!</h1>
|
||||
<p>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<%
|
||||
content_for :title, "Skills Assessment"
|
||||
content_for :title, "Summary - Skills Assessment"
|
||||
content_for :footer_title, "Skills Assessment"
|
||||
content_for :progress, @status.progress.to_s
|
||||
content_for_javascript_once 'summary-edit' do
|
||||
|
Loading…
Reference in New Issue
Block a user