2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Rename availability groups to time slots

Added details of what an availability group is
Added front end for call attempt time slots
Added database changes for call attempt time slots
This commit is contained in:
Adam Zammit
2014-12-15 16:28:59 +11:00
parent 02741d9478
commit 3f4710e477
6 changed files with 184 additions and 16 deletions

View File

@@ -91,7 +91,10 @@ $questionnaire_id = false;
if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']);
xhtml_head(T_("Assign availability group to questionnaire"),true,false,array("../js/window.js"));
print "<h1>" . T_("Select a questionnaire from the list below") . "</h1>";
print "<p>" . T_("Assigning an availability group to a questionnaire will allow interviewers to select from those groups to restrict calls to a particular case to the times within the group") ."</p>";
print "<h3>" . T_("Select a questionnaire from the list below") . "</h3>";
display_questionnaire_chooser($questionnaire_id);
@@ -143,7 +146,7 @@ if ($questionnaire_id != false)
?>
</select><br/>
<input type="hidden" name="questionnaire_id" value="<?php print($questionnaire_id); ?>"/>
<input type="submit" name="add_availability" value="Add availability group"/></p>
<input type="submit" name="add_availability" value="<?php echo TQ_("Add availability group") ?>"/></p>
</form>
<?php
}