Bulding Address: | 7 E 15th St |
Building Alternate address: | 7 E 15th St |
Zip Code: | 10003 |
Neighborhood: | Gramercy Park |
Borough: | Manhattan |
Stories: | 5 |
Year Built: | 1900 |
Building Class: | C |
7 East 15th Street in Manhattan, NYC, is a historic building with a rich past. Originally constructed in 1887, it served as a branch of the Young Women's Christian Association, focusing on the welfare and education of young women. The building was later used by labor unions and as a worker's school, notably housing the Rand School of Social Science. This institution was significant for adult education and hosted lectures by prominent figures like John Dewey.
The building, designed in the Romanesque Revival style, features five stories and includes a library and auditorium. It was restored by SGI-USA, earning the Lucy G. Moses Preservation Award in 1995. The restoration involved reconstructing stone work, installing new wood window panes, and placing 20,000 terra cotta tiles on the pyramid roof.
Today, the building operates as the SGI-USA New York Culture Center, continuing its legacy as "The People's House" for its members.
To save an address as HTML in a Django model field, you can use a `TextField` or `CharField` to store the HTML content. Here's how you might represent the address "7 E 15th St, Manhattan, NYC" as HTML:
7 E 15th St, Manhattan, NYC
If you want to include additional formatting or details, you could use more complex HTML:
Address: 7 E 15th St, Manhattan, NYC
In your Django model, you would define a field like this:
python
from django.db import models
class Location(models.Model):
address_html = models.TextField(blank=True)
Then, you can save the HTML content into this field:
python
location = Location()
location.address_html = "
7 E 15th St, Manhattan, NYC
"
location.save()
Ensure that any user-provided HTML is properly sanitized to prevent XSS attacks. Django provides tools like `django.utils.html.escape()` to help with this:
python
from django.utils.html import escape
address = "7 E 15th St, Manhattan, NYC"
address_html = "
{}
".format(escape(address))
location.address_html = address_html
location.save()
7 E 15th St, Manhattan, NYC offers the following building amenities:
- No specific amenities listed for this building.
- However, it is a Class C office building with 43,000 square feet of rentable space.
- Construction was completed in 1900.
This HTML can be saved in a Django model field to provide information about the building amenities at 7 E 15th St. If more specific amenities are available, they can be added to the list.
7 E 15th St, Manhattan, NYC
Unfortunately, specific details about the current office and retail tenants at 7 E 15th St, Manhattan, NYC, are not available in the provided search results. However, here is a general template for presenting such information:
Office Tenants:
- Financial Services: [List financial service companies]
- Technology: [List tech companies]
- Legal: [List legal firms]
Retail Tenants:
- Food and Beverage: [List restaurants or cafes]
- Fashion: [List clothing stores]
- Health and Wellness: [List gyms or spas]
To populate this template, you would need specific information about the tenants at 7 E 15th St.
This HTML template provides a structure for listing office and retail tenants by business type. You would need to replace the placeholder text with actual tenant information.
To convert the information about internet providers available at 7 E 15th St, Manhattan, NYC into HTML for saving in a Django model field, you would first need to know the specific providers available at that location. However, based on general information about internet providers in NYC, here's a sample HTML structure:
Internet Providers at 7 E 15th St, Manhattan, NYC:
- Optimum: Offers fiber and cable internet services.
- Verizon: Provides fiber-optic internet with high speeds.
- Spectrum: Known for its wide coverage and cable internet services.
- RCN: Offers affordable cable and fiber internet options.
This HTML snippet lists some of the major internet providers in NYC. To customize it for the specific building, you would replace the list items with the actual providers available at that address.
If you need to dynamically generate this HTML in Django, you could use a template or a Python function that constructs the HTML string based on the data stored in your model.
For example, if you have a model field `internet_providers` that stores a list of provider names, you could generate the HTML like this:
python
def generate_html(providers):
html = "
Internet Providers at 7 E 15th St, Manhattan, NYC:
"
for provider in providers:
html += f"- {provider}
"
html += "
"
return html
# Example usage
providers = ["Optimum", "Verizon", "Spectrum", "RCN"]
html_content = generate_html(providers)
# Save html_content to your Django model field
This approach allows you to dynamically create the HTML based on the data in your model.
7 E 15th St, Manhattan, NYC is located near several transportation options:
- Subway: The nearest subway stations are 14 St – Union Square (served by N, Q, R, W, 4, 5, 6 trains), 23 St (served by F, M trains), and 14 St / 8 Av (served by A, C, E, L trains).
- Bus: Bus lines M1, M2, M3, and M14A-SBS are nearby.
Cross streets include:
- East 15th Street intersects with Union Square East and Irving Place.
None
None