Commit 5acc1326 by Alison Hodges

Merge pull request #7133 from edx/ahodges/hackathon

Alison's Hackathon9 changes
parents a9b83a5a 4666caa6
...@@ -472,7 +472,7 @@ ...@@ -472,7 +472,7 @@
<aside class="content-supplementary" role="complementary"> <aside class="content-supplementary" role="complementary">
<div class="bit"> <div class="bit">
<h3 class="title title-3">${_('New to {studio_name}?').format(studio_name=settings.STUDIO_NAME)}</h3> <h3 class="title title-3">${_('New to {studio_name}?').format(studio_name=settings.STUDIO_NAME)}</h3>
<p>${_('Click Help in the upper-right corner to get more information about the {studio_name} page you are viewing. You can also use the links at the bottom of the page to access our continously updated documentation and other {studio_name} resources.').format(studio_name=settings.STUDIO_SHORT_NAME)}</p> <p>${_('Click Help in the upper-right corner to get more information about the {studio_name} page you are viewing. You can also use the links at the bottom of the page to access our continually updated documentation and other {studio_name} resources.').format(studio_name=settings.STUDIO_SHORT_NAME)}</p>
<ol class="list-actions"> <ol class="list-actions">
<li class="action-item"> <li class="action-item">
...@@ -481,7 +481,7 @@ ...@@ -481,7 +481,7 @@
</li> </li>
% if settings.TENDER_DOMAIN: % if settings.TENDER_DOMAIN:
<li class="action-item"> <li class="action-item">
<a href="http://${settings.TENDER_DOMAIN}/discussion/new" class="show-tender" title="${_("Use our feedback tool, Tender, to request help")}"> <a href="http://${settings.TENDER_DOMAIN}/discussion/new" class="action action-primary" title="${_("Use our feedback tool, Tender, to request help")}">
${_("Request help with {studio_name}").format(studio_name=settings.STUDIO_NAME)} ${_("Request help with {studio_name}").format(studio_name=settings.STUDIO_NAME)}
</a> </a>
</li> </li>
......
<%inherit file="base.html" /> <%inherit file="base.html" />
<%def name="online_help_token()"><% return "video" %></%def>
<%! <%!
import json import json
from django.core.serializers.json import DjangoJSONEncoder from django.core.serializers.json import DjangoJSONEncoder
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
% endif % endif
<li class="action-item"> <li class="action-item">
<a href="https://edge.edx.org/courses/edX/edX101/How_to_Create_an_edX_Course/about" rel="external" class="action action-primary">${_("Enroll in edX101")}</a> <a href="https://www.edx.org/course/overview-creating-edx-course-edx-edx101#.VO4eaLPF-n1" rel="external" class="action action-primary">${_("Enroll in edX101")}</a>
<span class="tip">${_("How to use {studio_name} to build your course").format(studio_name=settings.STUDIO_NAME)}</span> <span class="tip">${_("How to use {studio_name} to build your course").format(studio_name=settings.STUDIO_NAME)}</span>
</li> </li>
</ul> </ul>
...@@ -53,8 +53,7 @@ ...@@ -53,8 +53,7 @@
<ul class="list-actions"> <ul class="list-actions">
<li class="action-item"> <li class="action-item">
<a href="http://${settings.TENDER_DOMAIN}/discussion/new" class="action action-primary" title="${_("Use our feedback tool, Tender, to share your feedback")}"><i class="icon fa fa-comments"></i>${_("Contact Us")}</a>
<a href="http://${settings.TENDER_DOMAIN}/discussion/new" class="action action-primary show-tender" title="${_("Use our feedback tool, Tender, to share your feedback")}"><i class="icon fa fa-comments"></i>${_("Contact Us")}</a>
</li> </li>
</ul> </ul>
</div> </div>
......
...@@ -606,8 +606,8 @@ class CourseFields(object): ...@@ -606,8 +606,8 @@ class CourseFields(object):
due_date_display_format = String( due_date_display_format = String(
display_name=_("Due Date Display Format"), display_name=_("Due Date Display Format"),
help=_( help=_(
"Enter the format due dates are displayed in. Due dates must be in MM-DD-YYYY, DD-MM-YYYY, YYYY-MM-DD, " "Enter the format for due dates. The default is Mon DD, YYYY. Enter \"%m-%d-%Y\" for MM-DD-YYYY, "
"or YYYY-DD-MM format." "\"%d-%m-%Y\" for DD-MM-YYYY, \"%Y-%m-%d\" for YYYY-MM-DD, or \"%Y-%d-%m\" for YYYY-DD-MM."
), ),
scope=Scope.settings, default=None scope=Scope.settings, default=None
) )
...@@ -630,10 +630,12 @@ class CourseFields(object): ...@@ -630,10 +630,12 @@ class CourseFields(object):
certificates_display_behavior = String( certificates_display_behavior = String(
display_name=_("Certificates Display Behavior"), display_name=_("Certificates Display Behavior"),
help=_( help=_(
"Has three possible states: 'end', 'early_with_info', 'early_no_info'. 'end' is the default behavior, " "Enter end, early_with_info, or early_no_info. After certificate generation, students who passed see a "
"where certificates will only appear after a course has ended. 'early_with_info' will display all " "link to their certificates on the dashboard and students who did not pass see information about the "
"certificate information before a course has ended. 'early_no_info' will hide all certificate " "grading configuration. The default is end, which displays this certificate information to all students "
"information unless a student has earned a certificate." "after the course end date. To display this certificate information to all students as soon as "
"certificates are generated, enter early_with_info. To display only the links to passing students as "
"soon as certificates are generated, enter early_no_info."
), ),
scope=Scope.settings, scope=Scope.settings,
default="end" default="end"
......
...@@ -36,6 +36,7 @@ content_libraries = creating_content/libraries.html ...@@ -36,6 +36,7 @@ content_libraries = creating_content/libraries.html
content_groups = cohorts/cohorted_courseware.html content_groups = cohorts/cohorted_courseware.html
group_configurations = content_experiments/content_experiments_configure.html#set-up-group-configurations-in-edx-studio group_configurations = content_experiments/content_experiments_configure.html#set-up-group-configurations-in-edx-studio
container = developing_course/course_components.html#components-that-contain-other-components container = developing_course/course_components.html#components-that-contain-other-components
video = index.html
# below are the language directory names for the different locales # below are the language directory names for the different locales
[locales] [locales]
......
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