-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Atualiza página de acompanhamento da série
- Loading branch information
1 parent
2598ec6
commit 64997a1
Showing
6 changed files
with
148 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<div class="series pt-4"> | ||
<div class="container pt-3"> | ||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<div class="title">acompanhamento da série</div> | ||
</div> | ||
|
||
<div class="col-sm-3"></div> | ||
|
||
<div class="col-sm-3"> | ||
<div class="back"> | ||
<%= link_to "voltar à minhas séries", my_series_path, class: "btn btn-info btn-block" %> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row pt-5"> | ||
<div class="col-sm-6 favorite"> | ||
<%= image_tag "american-horror-story.jpg", width: "100%", height: "auto" %> | ||
<div class="episode"> | ||
S07E07 | ||
</div> | ||
</div> | ||
<div class="col-sm-6 favorite"> | ||
<div class="name">American Horror Story</div> | ||
<div class="next-episode mt-2">Próximo episódio: hoje</div> | ||
<p class="mt-5 mb-0">Seu progresso:</p> | ||
<div class="progress mt-2" style="height: 25px"> | ||
<div class="progress-bar bg-info" role="progressbar" style="width: 70%" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div> | ||
</div> | ||
|
||
<p class="subtitle mt-5 mb-0">Gênero</p> | ||
<p>Drama, suspense</p> | ||
|
||
<div class="row mt-4"> | ||
<div class="col-sm-4"> | ||
<div class="subtitle">No ar em</div> | ||
<p>Canal</p> | ||
</div> | ||
<div class="col-sm-4"> | ||
<div class="subtitle">Duração</div> | ||
<p>45 min</p> | ||
</div> | ||
<div class="col-sm-4"> | ||
<div class="subtitle">Status</div> | ||
<p>Em exibição</p> | ||
</div> | ||
</div> | ||
|
||
<%= link_to "", class: "mt-4 btn btn-outline-danger" do %> | ||
remover da minha lista | ||
<%= fa_icon "times" %> | ||
<% end %> | ||
</div> | ||
</div> | ||
|
||
<!-- <div class="episode-info"> | ||
</div> --> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<div class="series pt-4"> | ||
<div class="container pt-3"> | ||
<div class="row"> | ||
<div class="col-sm-3"> | ||
<div class="title">minhas séries</div> | ||
</div> | ||
|
||
<div class="col-sm-5"></div> | ||
|
||
<div class="col-sm-2"> | ||
<div class="search"> | ||
<div class="form-group"> | ||
<input type="search" class="form-control" placeholder="pesquise por nome"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-sm-2"> | ||
<div class="filter"> | ||
<div class="btn-group"> | ||
<button type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
ordenar por | ||
</button> | ||
<div class="dropdown-menu"> | ||
<a class="dropdown-item" href="#">nome</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<% 20.times do %> | ||
<div class="col-sm-3"> | ||
<div class="series-card -favorite"> | ||
<div class="photo"> | ||
<%= link_to series_path(Series.first) do %> | ||
<%= image_tag "american-horror-story.jpg" %> | ||
<% end %> | ||
</div> | ||
<div class="episode"> | ||
S07E07 | ||
</div> | ||
<div class="progress mt-3"> | ||
<div class="progress-bar bg-info" role="progressbar" style="width: 70%" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div> | ||
</div> | ||
<div class="name"> | ||
American Horror Story | ||
</div> | ||
<div class="next-episode"> | ||
Próximo episódio: amanhã | ||
</div> | ||
</div> | ||
</div> | ||
<% end %> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters