wide search bar styling, nice-ified pageview list detailed markup

rtd2
Bobby Grace 2010-08-15 21:37:03 -05:00
parent 1a2727506b
commit f9b6adf124
2 changed files with 10 additions and 8 deletions

View File

@ -85,7 +85,7 @@ label { display: block; margin-bottom: 4px; font-weight: bold; color: #444; }
/* wide search bar */
.wide-search-bar { width: 100%; margin-bottom: 20px; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #e6e6e6; }
.wide-search-bar { width: 100%; margin-bottom: 80px; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #e6e6e6; }
.wide-search-bar-wrapper { padding: 8px; }
.wide-search-bar input { margin: 0; height: 25px; padding: 10px; -moz-border-radius: 0; -webkit-border-radius: 0; }
.wide-search-bar .text-input-wrapper { width: 70%; float: left; }

View File

@ -1,10 +1,12 @@
{% for pageview in pageview_list %}
<li class="module-item col-span">
<a href="{% url docs_detail pageview.project.user.username pageview.project.slug pageview.url %}">
<li class="module-item col-span">
<a href="{% url docs_detail pageview.project.user.username pageview.project.slug pageview.url %}">
{{ pageview.project.name }} - {{ pageview.url }}
<span class="count">
{{ pageview.count }} views
</span>
</a></li>
</a>
</li>
{% endfor %}