Skip to content

Commit a209dda

Browse files
committed
Removing the intro project page and migration
1 parent 59f3fa4 commit a209dda

File tree

4 files changed

+26
-145
lines changed

4 files changed

+26
-145
lines changed

conditional/templates/introductory_project.html

Lines changed: 0 additions & 62 deletions
This file was deleted.

conditional/templates/nav.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
{% endif %}
6363

6464
{% if is_eval_director %}
65-
<li><a href="/manage/intro_project"><span class="glyphicon glyphicon-tower"></span> Introductory Project Results</a></li>
6665
<li><a href="/slideshow/intro"><span class="glyphicon glyphicon-eye-open"></span> Introductory Evaluations Presentation</a></li>
6766
<li><a href="/slideshow/spring"><span class="glyphicon glyphicon-eye-open"></span> Membership Evaluations Presentation</a></li>
6867
{% endif %}

frontend/javascript/modules/introductoryProject.js

Lines changed: 0 additions & 82 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"""remove_freshmen_project
2+
3+
Revision ID: 9ae8696179d0
4+
Revises: d1a06ab54211
5+
Create Date: 2019-08-27 10:01:24.459604
6+
7+
"""
8+
9+
# revision identifiers, used by Alembic.
10+
revision = '9ae8696179d0'
11+
down_revision = 'd1a06ab54211'
12+
13+
from alembic import op
14+
import sqlalchemy as sa
15+
from sqlalchemy.dialects import postgresql
16+
17+
def upgrade():
18+
# ### commands auto generated by Alembic - please adjust! ###
19+
op.drop_column('freshman_eval_data', 'freshman_project')
20+
# ### end Alembic commands ###
21+
22+
23+
def downgrade():
24+
# ### commands auto generated by Alembic - please adjust! ###
25+
op.add_column('freshman_eval_data', sa.Column('freshman_project', postgresql.ENUM('Pending', 'Passed', 'Failed', name='freshman_project_enum'), autoincrement=False, nullable=False))
26+
# ### end Alembic commands ###

0 commit comments

Comments
 (0)