Skip to content

Commit 545e838

Browse files
author
Ilya Radchenko
committed
Add labels and change wording
1 parent 941887e commit 545e838

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

config/config.html

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1-
<input type="text" ng-model="config.prepare" />
1+
<label for="strider-python-prepare">Prepare Command</label>
2+
<input id="strider-python-prepare" type="text" ng-model="config.prepare" placeholder="pip -r requirements.txt"/>
23
<p class="help-text">
3-
Select which command should be used to prepare your project. The default is
4+
Enter which command should be used to prepare your project. The default is
45
"pip -r requirements.txt". For example, this could be "python setup.py
56
develop" for some projects.
67
</p>
7-
<select ng-model="config.test">
8+
9+
<label for="strider-python-test">Test Command</label>
10+
<select id="strider-python-test" ng-model="config.test">
811
<option value="python setup.py test">python setup.py test</option>
912
<option value="make test">make test</option>
1013
<option value="py.test">py.test</option>
1114
<option value="none">No test command</option>
1215
</select>
1316
<p class="help-text">
1417
Select which command should be used to test your
15-
project. Alternatively, select "none" if you are going to test using
18+
project. Alternatively, select "No test command" if you are going to test using
1619
some other plugin.
1720
</p>
21+
1822
<button class="btn btn-primary" ng-click="save()">Save</button>

0 commit comments

Comments
 (0)