diff options
author | Alvin Li <liweitianux@gmail.com> | 2013-08-14 00:05:31 +0800 |
---|---|---|
committer | Alvin Li <liweitianux@gmail.com> | 2013-08-14 00:05:31 +0800 |
commit | bb095adf76bddc2f6c5925bcdebb52bff75e6578 (patch) | |
tree | c04b5ef145708e76eccc5b6e703c5742578ca4a8 /97suifangqa/templates | |
parent | 87ed76dd20431eb2a4216f9356b6da417fe003ce (diff) | |
download | 97dev-bb095adf76bddc2f6c5925bcdebb52bff75e6578.tar.bz2 |
* added 'templates/search/search.html'
* updated haystack settings
* updated 'static' files settings
* added 'search function' for 'apps/indicator': IndicatorCategory, Indicator
* merged static files of '97suifang-front' by 'mjymjydark'
* merged pages of '97suifang-front' by 'mjymjydark'
* updated pages to use 'django templates syntax' for the static links
TODO:
to fix the 'static links' of 'indicator/static/javascripts/*.js'
Diffstat (limited to '97suifangqa/templates')
-rw-r--r-- | 97suifangqa/templates/base.html | 1 | ||||
-rw-r--r-- | 97suifangqa/templates/index.html | 8 | ||||
-rw-r--r-- | 97suifangqa/templates/sciblog/blog_list.html | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/97suifangqa/templates/base.html b/97suifangqa/templates/base.html index 9637182..5c2628f 100644 --- a/97suifangqa/templates/base.html +++ b/97suifangqa/templates/base.html @@ -94,3 +94,4 @@ {% endblock js %} </body> </html> +{# vim: set ts=2 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #} diff --git a/97suifangqa/templates/index.html b/97suifangqa/templates/index.html index 32770bd..e23d16a 100644 --- a/97suifangqa/templates/index.html +++ b/97suifangqa/templates/index.html @@ -29,12 +29,14 @@ <li class="done"><a href="{% url sciblog.views.blog_index %}">搜索首页</a></li> <li class="done"><a href="{% url list_blogs %}">文章列表</a></li> <li class="done"><a href="{% url blog_detail 1%}">文章详细信息显示</a></li> - <li class="todo"><a href="{% url login %}">登录页面</a></li> - <li class="todo"><a href="{% url logout %}">登出页面</a></li> - <li class="todo"><a href="{% url signup %}">注册界面</a></li> + <li class="done"><a href="{% url login %}">登录页面</a></li> + <li class="done"><a href="{% url logout %}">登出页面</a></li> + <li class="done"><a href="{% url signup %}">注册界面</a></li> </ul> 待完成页面: <ul> + <li class="todo"><a href="{% url follow_indicator %}">关注指标</a></li> + <li class="todo"><a href="{% url indicator_status %}">指标状态</a></li> </ul> </div> </body> diff --git a/97suifangqa/templates/sciblog/blog_list.html b/97suifangqa/templates/sciblog/blog_list.html index 7e8b7b2..67f2126 100644 --- a/97suifangqa/templates/sciblog/blog_list.html +++ b/97suifangqa/templates/sciblog/blog_list.html @@ -111,3 +111,5 @@ </section> {% endblock %} + +{# vim: set ts=2 sw=2 tw=0 fenc=utf-8 ft=htmldjango: #} |