edgware/edgware/templates/main/browse.html

57 lines
1.3 KiB
HTML
Raw Normal View History

2011-05-07 16:27:31 +05:30
{% extends 'main_base.html' %}
{% block title %}
Home
{% endblock %}
{% block extra_head %}
2011-07-04 00:07:05 +05:30
<link rel="stylesheet" href="/static/css/files/browse.css" />
2011-05-07 16:27:31 +05:30
{% endblock %}
{% block pageTitle %}
2011-07-04 00:07:05 +05:30
Browse Publications
2011-05-07 16:27:31 +05:30
{% endblock %}
2011-07-03 17:28:24 +05:30
Browse Publications
2011-05-07 16:27:31 +05:30
{% block content %}
2011-07-04 00:07:05 +05:30
<div id="browseWrapper">
<div id="browsePublicationsleft">
2011-07-09 20:12:26 +05:30
<!-- <h5>Recent Publications:</h5> -->
2011-07-04 03:12:53 +05:30
2011-07-09 20:12:26 +05:30
<iframe src="{{ first_article.iframe_url }}" width="310" height="400" id="iframePreview"></iframe>
<!-- <img src="http://camputer.org/ftp/public/Issue00.jpg"></a> -->
2011-07-04 03:04:43 +05:30
<p>
Issue 00:<em>Instructions for printing</em> July 2011
2011-07-04 03:17:58 +05:30
</p><br/>
2011-07-04 03:04:43 +05:30
<p>
Issue -1:<em>Collecting Materials</em> January 2011
2011-07-04 03:17:58 +05:30
</p><br/>
<p>
And so on....
2011-07-04 03:04:43 +05:30
</p>
2011-07-04 03:17:58 +05:30
<br/>
2011-07-04 03:04:43 +05:30
2011-07-04 00:07:05 +05:30
</div>
<div id="browseArticlesright">
2011-07-04 03:12:53 +05:30
<h5>Published or in-progress articles by type of Study:</h5>
2011-07-04 03:04:43 +05:30
<p>
2011-07-09 20:12:26 +05:30
<select name="articleThemes" id="articleThemes">
<option value="0">All Themes</option>
{% for t in themes %}
<option value="{{ t.id }}">{{ t.name }}</option>
{% endfor %}
<!--
2011-07-04 03:04:43 +05:30
<option value="Milk">Things That Could be Done</option>
<option value="Cheese">Things that Have Happened</option>
<option value="Bread">Theories of the Possible</option>
<option value="Cow">Things without a Name</option>
2011-07-04 03:17:58 +05:30
<option value="Pig">Etc.</option>
2011-07-09 20:12:26 +05:30
-->
2011-07-04 03:04:43 +05:30
</select>
</p>
2011-07-04 00:07:05 +05:30
</div>
2011-05-07 16:27:31 +05:30
</div>
{% endblock %}