Skip to content

Commit a0b59fe

Browse files
authored
Merge pull request readthedocs#5180 from EJEP/master
Clarify 'more info' link in admin settings page
2 parents bcf6db1 + 15aa633 commit a0b59fe

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.18 on 2019-02-02 19:45
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('projects', '0037_add_htmlfile'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='project',
17+
name='documentation_type',
18+
field=models.CharField(choices=[('sphinx', 'Sphinx Html'), ('mkdocs', 'Mkdocs (Markdown)'), ('sphinx_htmldir', 'Sphinx HtmlDir'), ('sphinx_singlehtml', 'Sphinx Single Page HTML')], default='sphinx', help_text='Type of documentation you are building. <a href="http://www.sphinx-doc.org/en/stable/builders.html#sphinx.builders.html.DirectoryHTMLBuilder">More info on sphinx builders</a>.', max_length=20, verbose_name='Documentation type'),
19+
),
20+
]

readthedocs/projects/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class Project(models.Model):
185185
help_text=_(
186186
'Type of documentation you are building. <a href="'
187187
'http://www.sphinx-doc.org/en/stable/builders.html#sphinx.builders.html.'
188-
'DirectoryHTMLBuilder">More info</a>.',
188+
'DirectoryHTMLBuilder">More info on sphinx builders</a>.',
189189
),
190190
)
191191

0 commit comments

Comments
 (0)