Commit cd0adbd5 by Chris Dodge

fix dereferences in django templates

parent 8d1dfa77
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
<div class="steps-container"> <div class="steps-container">
<div class="body-container"> <div class="body-container">
<h3>{% blocktrans %} Your Proctoring Session Has Started {% endblocktrans %}</h3> <h3>{% blocktrans %} Your Proctoring Session Has Started {% endblocktrans %}</h3>
<p>{% blocktrans %} From this point in time, you must follow the <a href="{{link_urls.get('online_proctoring_rules','#')}}">online proctoring rules</a> to pass the proctoring review for your exam. {% endblocktrans %}</p> <p>{% blocktrans %} From this point in time, you must follow the <a href="{{link_urls.online_proctoring_rules}}">online proctoring rules</a> to pass the proctoring review for your exam. {% endblocktrans %}</p>
<div class="alert"> <div class="alert">
{% blocktrans %} {% blocktrans %}
......
...@@ -2,16 +2,20 @@ ...@@ -2,16 +2,20 @@
<div class="faq-proctoring-exam"> <div class="faq-proctoring-exam">
<h4> {% trans "See Also" %} </h4> <h4> {% trans "See Also" %} </h4>
<p> <p>
{% blocktrans %} <a class="footer-link" href="{{link_urls.faq}}">
<a class="footer-link" href="{{link_urls.get('faq','#')}}"> {% blocktrans %}
Frequently asked questions about proctoring and earning college credit. Frequently asked questions about proctoring and earning college credit.
{% endblocktrans %}
</a> </a>
<a class="footer-link" href="{{link_urls.get('online_proctoring_rules','#')}}"> <a class="footer-link" href="{{link_urls.online_proctoring_rules}}">
{% blocktrans %}
Online proctoring rules Online proctoring rules
{% endblocktrans %}
</a> </a>
<a class="footer-link" href="{{link_urls.get('tech_requirements','#')}}"> <a class="footer-link" href="{{link_urls.tech_requirements}}">
{% blocktrans %}
Technical Requirements for taking a proctored exam Technical Requirements for taking a proctored exam
{% endblocktrans %}
</a> </a>
{% endblocktrans %}
</p> </p>
</div> </div>
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
{% blocktrans %} {% blocktrans %}
Proctoring session results are usually available 24-48 hours after you submit your exam. Proctoring session results are usually available 24-48 hours after you submit your exam.
If you have questions about the status of your session review If you have questions about the status of your session review
after that time, contact <a href="{{link_urls.get('contact_us','#')}}">{{platform_name}}</a> Support. after that time, contact <a href="{{link_urls.contact_us}}">{{platform_name}}</a> Support.
{% endblocktrans %} {% endblocktrans %}
</p> </p>
<hr> <hr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment