1
0
Fork 0
A REST-API built with Flask and Python. Its main purpose is to receive the readings from the light meters welding booths in the Ritherdon factory and make them available for consumption by the relay-controllers in the gallery.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

81 lines
3.3 KiB

{% extends "layout.html" %}
{% block content %}
<main>
<div>
<div class="header">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="logo"/>
<h1>Return to Ritherdon Project</h1>
</div>
<h2>Artwork Status</h2>
<div class="status-bar">
<div class="meter">
<img src="{{ url_for('static', filename='images/%s.png' % data["device 1"].status) }}" alt="logo"/>
<p>Factory 1</p>
</div>
<div class="meter">
<img src="{{ url_for('static', filename='images/%s.png' % data["device 2"].status) }}" alt="logo"/>
<p>Factory 2</p>
</div>
<div class="meter">
<img src="{{ url_for('static', filename='images/%s.png' % data["device 3"].status) }}" alt="logo"/>
<p>Factory 3</p>
</div>
<div class="meter">
<img src="{{ url_for('static', filename='images/%s.png' % data["device 4"].status) }}" alt="logo"/>
<p>Gallery 1</p>
</div>
<div class="meter">
<img src="{{ url_for('static', filename='images/%s.png' % data["device 5"].status) }}" alt="logo"/>
<p>Gallery 2</p>
</div>
<div class="meter">
<img src="{{ url_for('static', filename='images/%s.png' % data["device 6"].status) }}" alt="logo"/>
<p>Gallery 3</p>
</div>
</div>
<h2>About the Project</h2>
<p>
"Return to Ritherdon" is a two year residency at Ritherdon & Co Ltd, a manufacturer of metal enclosures based in Darwen, Lancashire U.K.
</p>
<h2>About the Artist: Nicola Ellis</h2>
<p>Nicola is interested in the properties, value, function and circulation of materials. She has a current focus on metals and the companies that work with them, her work draws on the visual and spoken language of industry operations, fabrication and profiling processes. The parameters for her sculpture, installation, drawings and videos include relationships between people, businesses and technology.
</p>
<h2>About the Gallery: Castlefield Gallery</h2>
<p>
Established by artists in 1984, Castlefield Gallery is the first public contemporary visual art gallery to have opened in Manchester. The arrival of Castlefield Gallery in the city was a significant catalyst of what became a period of rapid cultural growth, and the increase of the presence of visual artists in the city and city region. As a registered charity, our mission drives our work to focus on artistic and career development for artists, as well as deepening audiences’ relationship to contemporary art. Over the last three decades we have become an integral part of the North of England’s cultural fabric and a vital support to artists across the North West and further afield.
</p>
<h2>About this Website</h2>
<p>
This website is part of an, unnamed, artwork which is part of the "Return to Ritherdon" project.
</p>
<h2>Links</h2>
<ul>
<li><a href="http://www.nicolaellis.com/" title="Click this to visit Nicola's personal website.">Nicola's Personal Website</a></li>
<li><a href="https://www.castlefieldgallery.co.uk/" title="Click this to visit Castlefield's website.">Castlefield's Website</a></li>
<li><a href="{{ url_for('/api./api_swagger_ui_index') }}" title="Click this to inspect this site's A.P.I.">Swagger A.P.I.</a></li>
</ul>
</div>
</main>
{% endblock content %}