허진호

Merge branch 'dev' of https://github.com/jh8579/fileshell_cloudcomputing into dev

# Conflicts:
#	fileshell/models.py
#	fileshell/settings.py
#	fileshell/urls.py
#	fileshell/views.py
#	templates/base.html
1 {% extends 'base.html'%} 1 {% extends 'base.html'%}
2 {% load staticfiles %} 2 {% load staticfiles %}
3 {% block content %} 3 {% block content %}
4 - <div class="frame"> 4 + <div class="frame_home">
5 <!-- //header --> 5 <!-- //header -->
6 <div class="container"> 6 <div class="container">
7 <!-- //nav --> 7 <!-- //nav -->
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
9 <div class = "shiftleft"> 9 <div class = "shiftleft">
10 <h2>즐겨찾기</h2> 10 <h2>즐겨찾기</h2>
11 </div> 11 </div>
12 - <table id="hor-minimalist-b" width = 1000px> 12 + <table id="hor-minimalist-b">
13 <thead> 13 <thead>
14 <tr> 14 <tr>
15 <td width=300><p>제목</p></td> 15 <td width=300><p>제목</p></td>
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
65 {% else %} 65 {% else %}
66 <td width=100><a href="/changeFavor/{{ fileRow.bucketPath }}/{{ fileRow.title }}" align=center><img class = 'star_icon' src= "{% static 'resources/gray_star.png' %}" width="50" height="50"/></a></td> 66 <td width=100><a href="/changeFavor/{{ fileRow.bucketPath }}/{{ fileRow.title }}" align=center><img class = 'star_icon' src= "{% static 'resources/gray_star.png' %}" width="50" height="50"/></a></td>
67 {% endif %} 67 {% endif %}
68 - <td width=100><p href="">{{ fileRow.fileSize }}</p></td> 68 + <td width=100><p href="">{{ fileRow.fileSize}}</p></td>
69 <td width=100><a href="/delete/{{ fileRow.bucketPath }}{{ fileRow.title }}//{{ fileRow.title }}//{{ fileRow.bucketPath }}" align=center><img class = 'trash_icon' src= "{% static 'resources/trashcan.png' %}" width="50" height="50"/></a></td> 69 <td width=100><a href="/delete/{{ fileRow.bucketPath }}{{ fileRow.title }}//{{ fileRow.title }}//{{ fileRow.bucketPath }}" align=center><img class = 'trash_icon' src= "{% static 'resources/trashcan.png' %}" width="50" height="50"/></a></td>
70 </tr> 70 </tr>
71 {% endfor %} 71 {% endfor %}
......