From 4845d2ecccb76afd1bb1711f21b044f4773b63ab Mon Sep 17 00:00:00 2001
From: Andi Chang
- {{staff_hour.time}}
- {% if staff_hour.cancelled %}
- cancelled this week
- {% endif %}
-
+ {{staff_hour.time}}
+ {% if staff_hour.cancelled %}
+ cancelled this week
+ {% endif %}
+ We're a student organization dedicated to providing free computing for all UC Berkeley students, faculty, and staff. We run a computer lab on southside, have a wicked set of servers for staff to play on, and provide cool services to the Berkeley community. We run a computer lab on southside, have a wicked set of servers for staff to play on, and provide cool services to the Berkeley community. OCF Staff meet to discuss technology, learn from each other, and work on OCF projects. Drop-in visitors are always welcome, especially those interested in joining the staff team! When: Every Wednesday at 7:30pm Where: OCF Computer lab (171 MLK) Where: OCF Computer lab (171 MLK) Our computer lab, located in 171 MLK Student Union, features high-res scanners, free printing, and high-end desktops with mechanical keyboards and GTX graphics cards, all running Debian GNU/Linux. Our computer lab, located in 171 MLK Student Union, features high-res scanners, free printing, and high-end desktops with mechanical keyboards and GTX graphics cards, all running Debian GNU/Linux. OCF volunteers maintain services for the Berkeley community, including:
The lab is located in
- 171 MLK Student Union.
+ 171 MLK Student Union.
Account Tools
+ The OCF computer lab consists of 29 workstations running
+ NixOS. They are maintained by
+ OCF volunteer staff who
+ operate the servers, workstations, and networking gear that helps the
+ lab run.
+
+ The computer lab contains 3 scanners, 3 standing desks, and a
+ Blu-ray/DVD/CD reader/writer.
+
+ OCF computers include free and open-source software such as
+ LibreOffice (similar to
+ Microsoft Office), GIMP (similar
+ to Adobe Photoshop), and more.
+
+ For details about printing in the lab, see
+ Printing.
+
+ The OCF computer lab is located in 171 MLK Student Union.
+ It can be accessed through the main MLK building or via the
+ tunnel by the stairs between Upper and Lower Sproul.
+ {% google_map '100%' '300px' %}
+ Please note that our hours are all Berkeley Time, as the front desk
+ staff are student employees and may have classes before
+ opening times. Hours for the next week are:
+ The regular OCF hours are:
+ Current and future holidays are listed below. Note that
+ holiday hours may change, so you should check back
+ closer to the holiday.
+ Check out upcoming events on the OCF Newsletter. Check out upcoming events on the OCF calendar. We hold weekly staff hours to provide assistance with account issues or with OCF services. Drop by to ask questions or just to hang out!OCF Computer Lab
Staff Hours
+ Staff Hours {{staff_hour.day}}
-
+
+
+
<{{staffer.user_name}}>
+ Have questions? Drop by for help from a friendly volunteer staffer!
{% for staffer in staff_hour.staff %}
-
{{staffer.real_name}}
+ {{staffer.real_name}}
<{{staffer.user_name}}>{{staffer.position}}
What is the Open Computing Facility?
OCF Staff Meetings
Computer Lab & Printing
We have a spiffy computer lab on southside.
Create an account and drop by!
-
We've got a perfect sandbox to poke around.
We meet every Wednesday at 7:30pm in the lab.
+ We meet every Wednesday at 7:30pm in the lab.
We hope to see you there!
About the Open Computing Facility
Welcome to the Open Computing Facility!
-
News from the staff team
OCF Computer Lab
diff --git a/ocfweb/main/templates/main/lab.html b/ocfweb/main/templates/main/lab.html
new file mode 100644
index 000000000..41a461cba
--- /dev/null
+++ b/ocfweb/main/templates/main/lab.html
@@ -0,0 +1,141 @@
+{% extends 'base.html' %}
+{% load google_maps %}
+{% load lab_hours %}
+{% load common %}
+{% load static %}
+
+{% block content %}
+
Location
+ Hours
+
+ {% for hours_date, hours in hours_this_week %}
+
+
+
+ {% endfor %}
+
+ {{hours_date | date:'l, M d'}}
+
+
+ {% if lab_status.force_lab_closed %}
+ Temporarily Closed
+ {% else %}
+ {{hours | lab_hours_time}}
+ {% lab_hours_holiday holidays hours_date %}
+ {% endif %}
+
+ Regular Weekly Hours
+
+ {% comment %} Monday is the 0th weekday {% endcomment %}
+
+
+ Sunday {{regular_hours | getitem:6 | lab_hours_time}}
+ Monday {{regular_hours | getitem:0 | lab_hours_time}}
+ Tuesday {{regular_hours | getitem:1 | lab_hours_time}}
+ Wednesday {{regular_hours | getitem:2 | lab_hours_time}}
+ Thursday {{regular_hours | getitem:3 | lab_hours_time}}
+ Friday {{regular_hours | getitem:4 | lab_hours_time}}
+ Saturday {{regular_hours | getitem:5 | lab_hours_time}} Holidays
+
+ {% for holiday in holidays %}
+
+
+ {% if holiday.startdate == holiday.enddate %}
+
+ {% endfor %}
+ {{holiday.startdate | date:holiday_format}}
+ {% else %}
+ {{holiday.startdate | date:holiday_format}} — {{holiday.enddate | date:holiday_format}}
+ {% endif %}
+ {{holiday.reason}}
+ {{holiday.hours | lab_hours_time}}
+
diff --git a/ocfweb/main/templates/main/lab.html b/ocfweb/main/templates/main/lab.html
index 41a461cba..2df70b50a 100644
--- a/ocfweb/main/templates/main/lab.html
+++ b/ocfweb/main/templates/main/lab.html
@@ -33,6 +33,11 @@
Printing.
+ If you'd like to reserve the lab space for your organization's event, please review our + reservation policy and submit a request in the linked form. +
+diff --git a/ocfweb/static/scss/site.scss b/ocfweb/static/scss/site.scss index b8f08adff..34702877e 100644 --- a/ocfweb/static/scss/site.scss +++ b/ocfweb/static/scss/site.scss @@ -15,23 +15,24 @@ $screen-lg-min: 1200px */ -$color-blue-baby: #cbe1ea; +$color-blue-baby: #c1e4f0; $color-blue-light: #f8fcfc; $color-blue: #298399; $color-gray-light: #ccc; $color-gray: #aaa; $color-green-light: #de9; +$color-purple-light: #e5e7f0; $color-yellow-light: #ffc; $color-penguin-blue: #0f4d92; $color-penguin-yellow: #ffd700; $navbar-height: 60px; -$hero-color: $color-green-light; +$hero-color: $color-blue-baby; $hero-button-color: #f7f7f7; $hero-button-color-hover: #fff; -$status-bar-color: $color-blue-baby; +$status-bar-color: $color-purple-light; $footer-top-color: $color-gray-light; $footer-bottom-color: $color-gray; @@ -70,6 +71,25 @@ code { font-family: 'IBM Plex Mono', Menlo, Consolas, monospace; } +.semibold { + font-weight: 500; +} + +.form-mini { + display: flex; + gap: 10px; + max-width: 400px; + + label { + display: none; + } + + .form-group { + margin: 0; + flex: auto; + } +} + .subtle { color: #999; diff --git a/ocfweb/templates/base.html b/ocfweb/templates/base.html index d8ccb3ba5..477d07b9f 100644 --- a/ocfweb/templates/base.html +++ b/ocfweb/templates/base.html @@ -61,6 +61,7 @@