Remove hardcoded references to 'Design Summit'

Help screens (and the no-event page) were still hardcoding
references to the "Design Summit", so let's clean up that.

Change-Id: I238f3f26082f7e21f6ee4722d73334a9fd1177fc
This commit is contained in:
Thierry Carrez 2017-03-16 14:03:06 +01:00
parent 1bc28b4b1b
commit d75aebbdfc
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{% extends "regform.html" %}
{% block helppage %}
<p>This page lets you suggest a session topic for the Design Summit.</p>
<p>This page lets you suggest a session topic for the {{ event.title }}.</p>
<p>Fill the <i>Title</i>, <i>Description</i> and <i>Topic</i> mandatory fields. You can also add links to existing Launchpad blueprints you created on the same subject, or add additional notes to further explain your idea to the PTL or lead responsible for selecting the content.</p>
<p>You should pay special attention to the <i>Topic</i>, as you can't change it yourself later. Available topics are:</p>
{% for topic in topics %}

View File

@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block helppage %}
<p>Welcome to the Design Summit session suggestion system.</p>
<p>Welcome to the {{ event.title }} session suggestion system.</p>
<p>This is the main screen. It lists all sessions suggested so far.</p>
<p>Each session has a topic, a title and a proposer. You can see the details of a proposed session by clicking on the title. You can sort the results by clicking on the corresponding table headers.</p>
<p>If you want to suggest your own session subject, click on <i>Suggest session</i>. If you're a topic lead, you will see the <i>Review topic</i> button that lets you review sessions suggested for your topic.</p>

View File

@ -5,7 +5,7 @@
<p><i>Unreviewed</i>: you haven't had time to look into this one yet</p>
<p><i>Incomplete</i>: you would like to see changes made to this description before making a decision. Add details on the Reviewer's notes textfield: those will be sent to the proposer.</p>
<p><i>Preapproved</i>: proposed session looks good, you'll schedule it. You may still merge it with another session at scheduling time though. Title and description for preapproved sessions are frozen.</p>
<p><i>Rejected</i>: session is not appropriate, off-topic, not applicable to Grizzly, or not a design summit discussion.</p>
<p><i>Rejected</i>: session is not appropriate, off-topic, or not a community open discussion.</p>
{% endblock %}
{% block formtitle %}
<h2>Review proposed session</h2>

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>OpenStack Design Summit</title>
<title>OpenStack topic suggestion system</title>
<link href="/media/odsreg.css" rel="stylesheet" type="text/css">
</head>
<body>
@ -11,14 +11,14 @@
<div class="span-5">
<h1 id="logo"><a href="/">OpenStack</a></h1>
</div>
<h1>Design Summit</h1>
<h1>OpenStack topic suggestion system</h1>
<h3>The sessions suggestion site is currently closed.</h3>
</div>
</div>
<div class="container">
<p>This site opens a few months before every OpenStack Summit to handle
session suggestions and scheduling for the "Design Summit" track.</p>
session suggestions and scheduling for specific parts of the event.</p>
<p>Please come back as we get nearer to the event.</p>
</div>
</body>