summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcss/tbc_external_review.css10
-rwxr-xr-xtbc_external_review.module3
2 files changed, 12 insertions, 1 deletions
diff --git a/css/tbc_external_review.css b/css/tbc_external_review.css
index b887817..4bb9584 100755
--- a/css/tbc_external_review.css
+++ b/css/tbc_external_review.css
@@ -106,3 +106,13 @@
float: right;
margin-top: -20px;
}
+#example-name {
+ margin-bottom: 10px;
+ padding: 5px;
+ background: #f5f5f5;
+ display: inline-block;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ -o-border-radius: 3px;
+ border-radius: 3px;
+}
diff --git a/tbc_external_review.module b/tbc_external_review.module
index 519ff8c..acc6e9e 100755
--- a/tbc_external_review.module
+++ b/tbc_external_review.module
@@ -1848,7 +1848,8 @@
if ($question_id != 5) {
$page_content .= l(" - Next>", "tbc_external_review/eligibility_test/question/" . ($question_id+1));
}
- $page_content .= "</h4>";
+ $page_content .= "</h4><br>";
+ $page_content .= "<div id='example-name'>Example file name: <strong>{$row->example_name}</strong></div><br>";
$page_content .= "<div class='well'><pre>{$row->code}</pre></div>";
$page_content .= drupal_get_form("tbc_external_review_eligibility_test_form", $question_id);