aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'okupy/templates')
-rw-r--r--okupy/templates/index.html2
-rw-r--r--okupy/templates/settings-contact.html107
-rw-r--r--okupy/templates/settings-email.html2
-rw-r--r--okupy/templates/settings-gentoo.html181
4 files changed, 250 insertions, 42 deletions
diff --git a/okupy/templates/index.html b/okupy/templates/index.html
index f464d46..01ff084 100644
--- a/okupy/templates/index.html
+++ b/okupy/templates/index.html
@@ -46,6 +46,7 @@
</div>
</p>
</div>
+ {% if user.is_developer %}
<div class="row-fluid">
<p>
<div class="span9">
@@ -77,6 +78,7 @@
</div>
</p>
</div>
+ {% endif %}
{% endfor %}
</div>
</div>
diff --git a/okupy/templates/settings-contact.html b/okupy/templates/settings-contact.html
index 05d21ba..9929e66 100644
--- a/okupy/templates/settings-contact.html
+++ b/okupy/templates/settings-contact.html
@@ -8,17 +8,99 @@
<h1>Contact Settings</h1>
<h3>Change your contact to details.</h3>
<div class="form well">
- <form action="." method="POST">{% csrf_token %}
- {{ contact_settings.errors }}
- {{ contact_settings.non_field_errors }}
- <div class="row-fluid">
+ {{ contact_settings.errors }}
+ {{ contact_settings.non_field_errors }}
+ <div class="row-fluid">
+ {% if user_info.website %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th>Websites</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for website in user_info.website %}
+ <form action="." method="POST">{% csrf_token %}
+ <tr>
+ <td><input type="hidden" name="website" value="{{ website }}" />{{ website }}</td>
+ <td><input class="btn" type="submit" name="delete_web" value="Delete" /></td>
+ </tr>
+ </form>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% endif %}
+ <form action="." method="POST">{% csrf_token %}
{{ contact_settings.website.label_tag }}
- <input name="website" type="text" value="{{ user_info.website.0 }}" /> {{ contact_settings.website.errors|striptags }}
- </div>
- <div class="row-fluid">
+ <input name="website" type="text" /> {{ contact_settings.website.errors|striptags }}
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Add" />
+ </div>
+ </form>
+ <br />
+ </div>
+ <div class="row-fluid">
+ {% if user_info.im %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th>IMs</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for im in user_info.im %}
+ <form action="." method="POST">{% csrf_token %}
+ <tr>
+ <td><input type="hidden" name="im" value="{{ im }}" />{{ im }}</td>
+ <td><input class="btn" type="submit" name="delete_im" value="Delete" /></td>
+ </tr>
+ </form>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% endif %}
+ <form action="." method="POST">{% csrf_token %}
{{ contact_settings.im.label_tag }}
- <input name="im" type="text" value="{{ user_info.im.0 }}" /> {{ contact_settings.im.errors|striptags }}
- </div>
+ <input name="im" type="text" /> {{ contact_settings.im.errors|striptags }}
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Add" />
+ </div>
+ </form>
+ <br />
+ </div>
+ <div class="row-fluid">
+ {% if user_info.gpg_fingerprint %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th>GPG Fingerprints</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for gpg_fingerprint in user_info.gpg_fingerprint %}
+ <form action="." method="POST">{% csrf_token %}
+ <tr>
+ <td><input type="hidden" name="gpg_fingerprint" value="{{ gpg_fingerprint }}" />{{ gpg_fingerprint }}</td>
+ <td><input class="btn" type="submit" name="delete_gpg" value="Delete" /></td>
+ </tr>
+ </form>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% endif %}
+ <form action="." method="POST">{% csrf_token %}
+ {{ contact_settings.gpg_fingerprint.label_tag }}
+ <input name="gpg_fingerprint" type="text" /> {{ contact_settings.gpg_fingerprint.errors|striptags }}
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Add" />
+ </div>
+ </form>
+ <br/>
+ </div>
+ <form action="." method="POST">{% csrf_token %}
<div class="row-fluid">
{{ contact_settings.location.label_tag }}
<input name="location" type="text" value="{{ user_info.location }}" /> {{ contact_settings.location.errors|striptags }}
@@ -35,12 +117,9 @@
{{ contact_settings.phone.label_tag }}
<input name="phone" type="text" value="{{ user_info.phone }}" /> {{ contact_settings.phone.errors|striptags }}
</div>
- <div class="row-fluid">
- {{ contact_settings.gpg_fingerprint.label_tag }}
- <input name="gpg_fingerprint" type="text" value="{{ user_info.gpg_fingerprint.0 }}" /> {{ contact_settings.gpg_fingerprint.errors|striptags }}
- </div>
+ <br />
<div class="row-fluid buttons">
- <input class="btn btn-primary" type="submit" value="Save" />
+ <input class="btn btn-primary" type="submit" value="Update" />
</div>
</form>
</div>
diff --git a/okupy/templates/settings-email.html b/okupy/templates/settings-email.html
index 1c21f28..1f02bfa 100644
--- a/okupy/templates/settings-email.html
+++ b/okupy/templates/settings-email.html
@@ -22,7 +22,7 @@
{% for mail in user_info.email%}
<form action="." method="POST">{% csrf_token %}
<tr>
- <td><input type="hidden" name="email" value="{{ mail }}" />{{mail}}</td>
+ <td><input type="hidden" name="email" value="{{ mail }}" />{{ mail }}</td>
<td><input class="btn" type="submit" name="delete" value="Delete" /></td>
</tr>
</form>
diff --git a/okupy/templates/settings-gentoo.html b/okupy/templates/settings-gentoo.html
index 85a2916..b5192e0 100644
--- a/okupy/templates/settings-gentoo.html
+++ b/okupy/templates/settings-gentoo.html
@@ -5,37 +5,164 @@
<div class="row">
<div id="page" class="span10">
<div>
- <h1>Gentoo Developer Information</h1>
- <h3>Change your Gentoo related details</h3>
- {% if user_info.is_developer %}
+ <h1>Gentoo Account Settings</h1>
+ <h3>Change Gentoo related information.</h3>
<div class="form well">
- <form action="." method="POST">{% csrf_token %}
- <div class="row-fluid">
- {{ gentoo_account_settings.developer_bug.label_tag }}
- <input name="developer_bug" type="text" value="{{ user_info.developer_bug.0 }}" /> {{ gentoo_account_settings.developer_bug.errors|striptags }}
- </div>
- <div class="row-fluid">
+ {{ gentoo_account_settings.errors }}
+ {{ gentoo_account_settings.non_field_errors }}
+ <div class="row-fluid">
+ {% if user_info.developer_bug %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th>Developer Bug</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for devbug in user_info.developer_bug %}
+ <form action="." method="POST">{% csrf_token %}
+ <tr>
+ <td><input type="hidden" name="developer_bug" value="{{ devbug }}" />{{ devbug }}</td>
+ {% if user_info.is_recruiter %}
+ <td><input class="btn" type="submit" name="delete_devbug" value="Delete" /></td>
+ {% endif %}
+ </tr>
+ </form>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% endif %}
+ {% if user_info.recruiter %}
+ <form action="." method="POST">{% csrf_token %}
+ {{ gentoo_account_settings.developer_bug.label_tag }}
+ <input name="developer_bug" type="text" /> {{ gentoo_account_settings.developer_bug.errors|striptags }}
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Add" />
+ </div>
+ </form>
+ {% endif %}
+ <br />
+ </div>
+ <div class="row-fluid">
+ {% if user_info.gentoo_join_date %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th>Gentoo Join Date</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for gjd in user_info.gentoo_join_date %}
+ <form action="." method="POST">{% csrf_token %}
+ <tr>
+ <td><input type="hidden" name="gentoo_join_date" value="{{ gjd }}" />{{ gjd }}</td>
+ {% if user_info.is_recruiter %}
+ <td><input class="btn" type="submit" name="delete_gjd" value="Delete" /></td>
+ {% endif %}
+ </tr>
+ </form>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% endif %}
+ {% if user_info.is_recruiter %}
+ <form action="." method="POST">{% csrf_token %}
+ {{ gentoo_account_settings.gentoo_join_date.label_tag }}
+ <input name="im" type="text" /> {{ gentoo_account_settings.gentoo_join_date.errors|striptags }}
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Add" />
+ </div>
+ </form>
+ {% endif %}
+ <br />
+ </div>
+ <div class="row-fluid">
+ {% if user_info.mentor %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th>Mentor</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for mentor in user_info.mentor %}
+ <form action="." method="POST">{% csrf_token %}
+ <tr>
+ <td><input type="hidden" name="mentor" value="{{ mentor }}" />{{ mentor }}</td>
+ {% if user_info.is_recruiter %}
+ <td><input class="btn" type="submit" name="delete_mentor" value="Delete" /></td>
+ {% endif %}
+ </tr>
+ </form>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% endif %}
+ {% if user_info.is_recuriter %}
+ <form action="." method="POST">{% csrf_token %}
{{ gentoo_account_settings.mentor.label_tag }}
- <input name="mentor" type="text" value="{{ user_info.mentor.0 }}" /> {{ gentoo_account_settings.mentor.errors|striptags }}
- </div>
- <div class="row-fluid">
- {{ gentoo_account_settings.gentoo_join_date.label_tag }}
- <input name="gentoo_join_date" type="text" value="{{ user_info.gentoo_join_date.0 }}" /> {{ gentoo_account_settings.gentoo_join_date.errors|striptags }}
- </div>
- <div class="row-fluid">
+ <input name="mentor" type="text" /> {{ gentoo_account_settings.mentor.errors|striptags }}
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Add" />
+ </div>
+ </form>
+ {% endif %}
+ <br/>
+ </div>
+ <div class="row-fluid">
+ {% if user_info.gentoo_retire_date %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th>Gentoo Retire Date</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for grd in user_info.gentoo_retire_date %}
+ <form action="." method="POST">{% csrf_token %}
+ <tr>
+ <td><input type="hidden" name="gentoo_retire_date" value="{{ grd }}" />{{ grd }}</td>
+ {% if user_info.is_recruiter %}
+ <td><input class="btn" type="submit" name="delete_grd" value="Delete" /></td>
+ {% endif %}
+ </tr>
+ </form>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% endif %}
+ {% if user_info.is_recruiter %}
+ <form action="." method="POST">{% csrf_token %}
{{ gentoo_account_settings.gentoo_retire_date.label_tag }}
- <input name="gentoo_retire_date" type="text" value="{{ user_info.gentoo_retire_date.0 }}" /> {{ gentoo_account_settings.gentoo_retire_date.errors|striptags }}
- </div>
- <div class="row-fluid">
- {{ gentoo_account_settings.ssh_key.label_tag }} {{ gentoo_account_settings.ssh_key.errors|striptags }}
- {{ gentoo_account_settings.ssh_key }}
- </div>
- <div class="row-fluid buttons">
- <input class="btn btn-primary" type="submit" value="Update" />
- </div>
- </form>
+ <input name="gentoo_retire_date" type="text" /> {{ gentoo_account_settings.gentoo_retire_date.errors|striptags }}
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Add" />
+ </div>
+ </form>
+ {% endif %}
+ <br/>
+ </div>
+ {% if user_info.is_developer %}
+ <form action="." method="POST">{% csrf_token %}
+ <div class="row-fluid">
+ {{ gentoo_account_settings.planet_feed.label_tag }}
+ <input name="planet_feed" type="text" value="{{ user_info.planet_feed }}" /> {{ gentoo_account_settings.planet_feed.errors|striptags }}
+ </div>
+ <div class="row-fluid">
+ {{ gentoo_account_settings.universe_feed.label_tag }}
+ <input name="universe_feed" type="text" value="{{ user_info.universe_feed }}" /> {{ gentoo_account_settings.universe_feed.errors|striptags }}
+ </div>
+ <br />
+ <div class="row-fluid buttons">
+ <input class="btn btn-primary" type="submit" value="Update" />
+ </div>
+ </form>
+ {% endif %}
</div>
- {% endif %}
</div>
</div>
</div>