Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel W Bond
advisor
Commits
5a423933
Commit
5a423933
authored
Feb 02, 2014
by
Daniel W Bond
Browse files
moved fields into a student user manage page
parent
05f916f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
advisor/trajectories/templates/new.html
View file @
5a423933
...
...
@@ -24,32 +24,6 @@ start visualizing your way to completing your degree.</h4></p>
{% csrf_token %}
<fieldset>
<!-- move to a user manage page form -->
<legend>
Select your courses(s).
</legend>
{% if courses %}
<div
class=
"alert alert-info"
>
Do you need to update the courses you've already taken?
</div>
{% else %}
<div
class=
"form-group"
>
<label
for
"
departmentAbbr
"
class=
"col-sm-2"
>
Department Abbreviation
</label>
<div
class=
"col-sm-1"
>
<input
type=
"text"
class=
"form-control"
id=
"Program"
placeholder=
"ENGH"
>
</div>
<label
for
"
courseNumber
"
class=
"col-sm-1"
>
Course Number
</label>
<div
class=
"col-sm-1"
>
<input
type=
"text"
class=
"form-control"
id=
"Program"
placeholder=
"302"
>
</div>
<!-- Name loads automatically -->
<label
for
"
name
"
class=
"col-sm-1"
>
Name
</label>
<div
class=
"col-sm-5"
>
<input
type=
"text"
class=
"form-control"
id=
"Program"
placeholder=
"Advanced Composition"
>
</div>
<div
class=
"col-sm-1"
>
<button
type=
"button"
class=
"btn btn-primary"
>
+
</button>
</div>
<!-- not sure how to have a zillion of these fields keep on appearing -->
</div>
{% endif %}
<legend>
Select your program(s).
</legend>
<div
class=
"form-group"
>
<label
for
"
Program
"
class=
"col-sm-2"
>
Program
</label>
...
...
@@ -72,40 +46,7 @@ start visualizing your way to completing your degree.</h4></p>
<button
type=
"button"
class=
"btn btn-primary"
>
+
</button>
</div>
</div>
<!-- this is going to be moved to a manage user page form -->
<legend>
Are you in the Honors College?
</legend>
<div
class=
"form-group"
>
<label
for
"
honorscollege
"
class=
"col-sm-2"
>
Honors
</label>
<div
class=
"col-sm-5"
>
<button
type=
"button"
class=
"btn btn-default"
>
Yes
</button>
<button
type=
"button"
class=
"btn btn-primary"
>
No
</button>
</div>
</div>
<!-- this is going to be moved to a manage user page form -->
<legend>
What is your current semester?
</legend>
<div
class=
"form-group"
>
<label
for
"
degreeType
"
class=
"col-sm-2"
>
Current Semester
</label>
<div
class=
"col-sm-3"
>
<select
class=
"form-control"
>
<option>
First Semester Freshman
</option>
<option>
Second Semester Freshman
</option>
<option>
First Semester Sophomore
</option>
<option>
Second Semester Sophomore
</option>
<option>
First Semester Junior
</option>
<option>
Second Semester Junior
</option>
<option>
First Semester Senior
</option>
<option>
Second Semester Senior
</option>
<option>
First Semester SuperSenior
</option>
<option>
Second Semester SuperSenior
</option>
<option>
First Semester SuperSuperSenior
</option>
<!-- option You Mayyyyy Want to Consider Seeing an Actual Person /option -->
</select>
</div>
</div>
<div
class=
"form-group"
>
<div
class=
"col-sm-offset-11 col-sm-1"
>
<button
type=
"submit"
class=
"btn btn-primary"
value=
"Submit"
>
Submit
</button>
...
...
advisor/trajectories/templates/student-manage.html
0 → 100644
View file @
5a423933
{% extends 'layouts/base.html' %}
{% block title %}
GMU Advisor | Manage My Account
{% endblock %}
{% block content %}
<div
class=
"page-header"
id=
"banner"
>
<div
class=
"row"
>
<div
class=
"col-md-12 text-center"
>
<h2>
Manage My Account
</h2>
</div>
</div>
</div>
<div
class=
"row well"
>
<div
class=
"col-md-12"
>
<form
class=
"form-horizontal"
action=
""
method=
"post"
role=
"form"
enctype=
"multipart/form-data"
>
{% csrf_token %}
<fieldset>
<legend>
Select your courses(s).
</legend>
{% if courses %}
<div
class=
"alert alert-info"
>
Do you need to update the courses you've already taken?
</div>
{% else %}
<div
class=
"form-group"
>
<label
for
"
departmentAbbr
"
class=
"col-sm-2"
>
Department Abbreviation
</label>
<div
class=
"col-sm-1"
>
<input
type=
"text"
class=
"form-control"
id=
"Program"
placeholder=
"ENGH"
>
</div>
<label
for
"
courseNumber
"
class=
"col-sm-1"
>
Course Number
</label>
<div
class=
"col-sm-1"
>
<input
type=
"text"
class=
"form-control"
id=
"Program"
placeholder=
"302"
>
</div>
<!-- Name loads automatically -->
<label
for
"
name
"
class=
"col-sm-1"
>
Name
</label>
<div
class=
"col-sm-5"
>
<input
type=
"text"
class=
"form-control"
id=
"Program"
placeholder=
"Advanced Composition"
>
</div>
<div
class=
"col-sm-1"
>
<button
type=
"button"
class=
"btn btn-primary"
>
+
</button>
</div>
<!-- not sure how to have a zillion of these fields keep on appearing -->
</div>
{% endif %}
<legend>
Are you in the Honors College?
</legend>
<div
class=
"form-group"
>
<label
for
"
honorscollege
"
class=
"col-sm-2"
>
Honors
</label>
<div
class=
"col-sm-5"
>
<button
type=
"button"
class=
"btn btn-default"
>
Yes
</button>
<button
type=
"button"
class=
"btn btn-primary"
>
No
</button>
</div>
</div>
<legend>
What is your current semester?
</legend>
<div
class=
"form-group"
>
<label
for
"
degreeType
"
class=
"col-sm-2"
>
Current Semester
</label>
<div
class=
"col-sm-3"
>
<select
class=
"form-control"
>
<option>
First Semester Freshman
</option>
<option>
Second Semester Freshman
</option>
<option>
First Semester Sophomore
</option>
<option>
Second Semester Sophomore
</option>
<option>
First Semester Junior
</option>
<option>
Second Semester Junior
</option>
<option>
First Semester Senior
</option>
<option>
Second Semester Senior
</option>
<option>
First Semester SuperSenior
</option>
<option>
Second Semester SuperSenior
</option>
<option>
First Semester SuperSuperSenior
</option>
<!-- option You Mayyyyy Want to Consider Seeing an Actual Person /option -->
</select>
</div>
</div>
</fieldset>
</form>
</div>
</div>
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment