aboutsummaryrefslogtreecommitdiff
path: root/templates/dev_status
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-11-22 07:04:45 -0500
committerBobby <[email protected]>2022-11-22 07:04:45 -0500
commit78459b8007e4776f57cca72ff2040921d61661cd (patch)
tree5b8f7e702ba260d9d2fe8bfe29c6dad37342b57e /templates/dev_status
parent0c6507767655598026102c4adb0bca2d2abc732f (diff)
downloadthatcomputerscientist-78459b8007e4776f57cca72ff2040921d61661cd.tar.xz
thatcomputerscientist-78459b8007e4776f57cca72ff2040921d61661cd.zip
some changes for repo section
Diffstat (limited to 'templates/dev_status')
-rw-r--r--templates/dev_status/home.html85
1 files changed, 16 insertions, 69 deletions
diff --git a/templates/dev_status/home.html b/templates/dev_status/home.html
index 962d85ad..91a00276 100644
--- a/templates/dev_status/home.html
+++ b/templates/dev_status/home.html
@@ -3,15 +3,9 @@
<div class="area">
{% load static %}
{% load times %}
- {% if not user.is_authenticated %}
- <p style="padding: 15px 10px;" class="alert">
- You are not logged in. You can only view public repositories. Please login or register
- using the sidebar on the left to view both public and private repositories.
- </p>
- {% endif %}
<div style="background-image: url({% static 'images/site/repositories.png' %}); width: 720px; height: 173px; background-repeat: no-repeat; background-position: center;">
{% comment %} Search and Filter {% endcomment %}
- <table style="margin: 0 auto; position: relative; top: 125px;">
+ <table style="margin: 0 auto; position: relative; top: 120px;">
<form action="" method="get">
<tr>
<td>
@@ -29,17 +23,6 @@
</select>
</td>
<td>
- <select name="filter">
- {% if user.is_authenticated %}
- <option value="all" {% if filter == 'all' %}selected{% endif %}>All</option>
- {% endif %}
- <option value="public" {% if filter == 'public' %}selected{% endif %}>Public</option>
- {% if user.is_authenticated %}
- <option value="private" {% if filter == 'private' %}selected{% endif %}>Private</option>
- {% endif %}
- </select>
- </td>
- <td>
<select name="sort">
<option value="full_name" {% if sort == 'full_name' %}selected{% endif %}>Name</option>
<option value="created" {% if sort == 'created' %}selected{% endif %}>Created</option>
@@ -62,58 +45,22 @@
</div>
</div>
<hr>
- <div class='repositories'>
-
- <table style="width: 720px; table-layout: fixed; border-spacing: 12px; border-collapse: separate;">
+ <div class='repositories' style="width: 720px;">
+ <table style="width=720px; margin: 0 auto; table-layout: fixed;">
{% for repo in repos %}
- <tr style="vertical-align: middle;">
- <td width="48px">
- {% if repo.private %}
- <img src="{% static 'images/site/icons/key.gif' %}" alt="Private" title="Private" style="width: 32px; display: block; margin: 0px auto 0 auto; height: auto;">
- {% else %}
- <img src="{% static 'images/site/icons/globe.gif' %}" alt="Public" title="Public" style="width: 32px; display: block; margin: 0px auto 0 auto; height: auto;">
- {% endif %}
- </td>
- <td width="500px">
- <h3 style="margin: 0px auto 8px auto;"><a href="{% url 'dev_status:repo' repo.name %}" style="font-size: 18px;">
- {{ repo.name }}
- </a></h3>
- {% if repo.description %}
- <p style="margin-top: 0px;"><small>{{ repo.description }}</small></p>
- {% else %}
- <p style="color: grey; margin-top: 0px;"><small>No description provided.</small></p>
- {% endif %}
- <table style="display: inline-table; border-spacing: 12px; border-collapse: separate; position: relative; top: -18px; left: -14px;">
- <tr>
- <td width="20px">
- <img src="{% static 'images/site/icons/star.png' %}" alt="Public" title="Stargazers" style="width: 16px; display: block; margin: 0 auto; height: auto;">
- </td>
- <td>
- <p style="text-align: center; margin: 0 auto;" title="Stargazers"><small>{{ repo.stargazers_count }}</small></p>
- </td>
- <td width="20px">
- <img src="{% static 'images/site/icons/fork.png' %}" alt="Public" title="Forks" style="width: 16px; display: block; margin: 0 auto; height: auto;">
- </td>
- <td>
- <p style="text-align: center; margin: 0 auto;" title="Forks"><small>{{ repo.forks_count }}</small></p>
- </td>
- <td width="20px">
- <img src="{% static 'images/site/icons/issue.png' %}" alt="Public" title="Open Issues" style="width: 16px; display: block; margin: 0 auto; height: auto;">
- </td>
- <td>
- <p style="text-align: center; margin: 0 auto;" title="Open Issues"><small>{{ repo.open_issues_count }}</small></p>
- </td>
- </tr>
- </table>
- </td>
- <td width="136px">
- <table>
- <tr><td style="color: #c9d1d9; background-color: #21262d; border-color: #f0f6fc; padding: 5px 10px; border-radius: 4px;"><a style="color: #c9d1d9; text-decoration: none; font-family: sans-serif; font-size: 14px;" href="{{ repo.html_url }}" target="_blank">View on GitHub</a></td></tr>
- </table>
- </td>
- </tr>
- {% endfor %}
- </table>
+ <tr>
+ <td>
+ <a href="{% url 'dev_status:repo' repo.name %}" style="display: inline-block; margin-right: 10px; background-image: url('{% url 'ignis:cover_image' repo.name %}');" class="zoom"></a>
+ </a>
+ </td>
+ <td>
+ <p style="font-size: 20px; font-weight: bold;">{{ repo.name }}</p>
+ <p style="font-size: 15px;">{{ repo.description }}</p>
+
+ </td>
+ </tr>
+ {% endfor %}
+ </table>
</div>
<div class="pagination">
{% if num_pages and page %}