Skip to content

Commit

Permalink
Merge pull request techx#19 from acm-monterrey/frontendcheckin
Browse files Browse the repository at this point in the history
Agregando las vistas principales del usuario
  • Loading branch information
memo-saldana committed Jul 23, 2019
2 parents c7b8a2c + e147832 commit bfa4c3f
Show file tree
Hide file tree
Showing 7 changed files with 90 additions and 6 deletions.
Binary file added app/client/assets/images/cross.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/client/assets/images/mark-white.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/client/assets/images/mark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion app/client/stylesheets/_dashboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,14 @@
margin-bottom: 24px;
}
}
}

.team-list {
width: 100%;
text-align: left;
margin-bottom: 24px;
display:inline-block;
}
.team-member {
padding-left: 30px;
}
}
4 changes: 2 additions & 2 deletions app/client/stylesheets/_page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.title {
font-family: $font-header;
text-transform: uppercase;
font-size: 2.5em;
font-size: 1.8em;
text-align: center;
color: $page-header-color;
letter-spacing: 8px;
Expand Down Expand Up @@ -49,4 +49,4 @@
font-size: 1.25em;
}
}
}
}
78 changes: 76 additions & 2 deletions app/client/views/dashboard/dashboard.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div id="dashboard" class="page">
<div class="divided title">
Dashboard
<div class="divided title"> <!-- style should be in the css, cant find it -->
Welcomo to hackmty, {{ user.profile.name.substr(0, user.profile.name.indexOf(' ')) }}!
</div>

<div class="ui stackable centered page grid">
Expand Down Expand Up @@ -235,4 +235,78 @@ <h4>

</div>
</div>

<!-- Box fot the TeamOverview, new box with different title and no functionality implemented -->
<div class="ui stackable centered page grid">
<div class="column">
<div class="ui status segment">
<!-- Title of the box -->
<div class="small title">
Team Overview
</div>
<!-- Title of the team -->
<div>
<h4>
Mi Equipo
</h4>
</div>
<!-- ngFor to iterate between the teammates -->
<div class="team-list" style="width: 100%; text-align: left; display:inline-block;">
<p style="vertical-align: middle; float: left;">
<img ng-if="false" src="../../assets/images/cross.png">
<img ng-if="true" src="../../assets/images/mark.png">
</p>
<p class="divided small team-member" style="padding-left: 30px; color: #473899;">
{{user.profile.name}}
</p>
</div>
<div class="team-list" style="width: 100%; text-align: left; display:inline-block;">
<p style="vertical-align: middle; float: left;">
<img ng-if="false" src="../../assets/images/cross.png">
<img ng-if="true" src="../../assets/images/mark.png">
</p>
<p class="divided small team-member" style="padding-left: 30px;">
Carolina Peyrot
</p>
</div>
<div class="team-list" style="width: 100%; text-align: left; display:inline-block;">
<p style="vertical-align: middle; float: left;">
<img ng-if="true" src="../../assets/images/cross.png">
<img ng-if="false" src="../../assets/images/mark.png">
</p>
<p class="divided small team-member" style="padding-left: 30px;">
Mariana Villanueva
</p>
</div>
<div class="team-list" style="width: 100%; text-align: left; display:inline-block;">
<p style="vertical-align: middle; float: left;">
<img ng-if="true" src="../../assets/images/cross.png">
<img ng-if="false" src="../../assets/images/mark.png">
</p>
<p class="divided small team-member" style="padding-left: 30px;">
Noe Campos
</p>
</div>

<!-- Buttons -->
<div ng-if="false" class="ui primary button" style="margin-bottom: 24px;">
Check In
</div>

<div ng-if="false" class="ui primary button" style="margin-bottom: 24px; display: inline-block; background-color: #46414A;">
<img src="../../assets/images/mark-white.png"height="19" width="19" style="float: left; padding-top: 2px;">
<p style="float: left; padding-left: 10px;">
Checked In
</p>
</div>

<div class="ui primary button" style="margin-bottom: 24px; width: 100%; margin: 0px;">
Everyone is check in your table is #34
</div>

</div>

</div>
</div>

</div>
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "JAFRS",
"name": "jafrs",
"version": "0.0.0",
"homepage": "https://github.com/techx/hackmit-registration",
"authors": [
Expand Down

0 comments on commit bfa4c3f

Please sign in to comment.