<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.honour.app/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=WikiAdmin</id>
	<title>Honour Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.honour.app/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=WikiAdmin"/>
	<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php/Special:Contributions/WikiAdmin"/>
	<updated>2026-05-23T21:59:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175655</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175655"/>
		<updated>2026-05-16T18:22:36Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;honour-college-edit-box&amp;quot; style=&amp;quot;background:#f5f8ff;border:1px solid #ccd6ee;padding:12px;margin-bottom:16px;border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Want to update this college page?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{#formlink:&lt;br /&gt;
form=CollegePage&lt;br /&gt;
|target={{FULLPAGENAME}}&lt;br /&gt;
|link text=Edit college details&lt;br /&gt;
|link type=button&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{#if:{{{references|}}}|{{{references}}}|&lt;br /&gt;
* Official website&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Colleges]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=MediaWiki:Common.js&amp;diff=175652</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=MediaWiki:Common.js&amp;diff=175652"/>
		<updated>2026-05-16T18:10:26Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// Honour Wiki: force CollegePage editing through Page Forms&lt;br /&gt;
&lt;br /&gt;
(function () {&lt;br /&gt;
    function currentTitle() {&lt;br /&gt;
        return mw.config.get(&#039;wgPageName&#039;);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function isLoggedIn() {&lt;br /&gt;
        return !!mw.config.get(&#039;wgUserName&#039;);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function formEditUrl(title, focusField) {&lt;br /&gt;
        var url = mw.util.getUrl(&#039;Special:FormEdit/CollegePage/&#039; + title);&lt;br /&gt;
        if (focusField) {&lt;br /&gt;
            url += &#039;?pf_focus=&#039; + encodeURIComponent(focusField);&lt;br /&gt;
        }&lt;br /&gt;
        return url;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function loginUrl() {&lt;br /&gt;
        return mw.util.getUrl(&#039;Special:UserLogin&#039;, {&lt;br /&gt;
            returnto: currentTitle()&lt;br /&gt;
        });&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function showLoginBox() {&lt;br /&gt;
        var box = document.querySelector(&#039;.honour-college-edit-box&#039;);&lt;br /&gt;
        if (!box || isLoggedIn()) return;&lt;br /&gt;
&lt;br /&gt;
        box.innerHTML =&lt;br /&gt;
            &#039;&amp;lt;div style=&amp;quot;font-size:18px;font-weight:700;margin-bottom:8px;&amp;quot;&amp;gt;Login required to edit&amp;lt;/div&amp;gt;&#039; +&lt;br /&gt;
            &#039;&amp;lt;div style=&amp;quot;margin-bottom:12px;&amp;quot;&amp;gt;Only logged-in students can update college information.&amp;lt;/div&amp;gt;&#039; +&lt;br /&gt;
            &#039;&amp;lt;a href=&amp;quot;&#039; + loginUrl() + &#039;&amp;quot; style=&amp;quot;display:inline-block;padding:10px 16px;border:1px solid #3366cc;border-radius:6px;background:#3366cc;color:#fff;text-decoration:none;font-weight:600;&amp;quot;&amp;gt;Login to edit&amp;lt;/a&amp;gt;&#039;;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function rewriteMainEditTab() {&lt;br /&gt;
        var editTab = document.querySelector(&#039;#ca-edit a&#039;);&lt;br /&gt;
        var formButton = document.querySelector(&#039;a[href*=&amp;quot;Special:FormEdit/CollegePage&amp;quot;]&#039;);&lt;br /&gt;
&lt;br /&gt;
        if (!editTab) return;&lt;br /&gt;
&lt;br /&gt;
        if (!isLoggedIn()) {&lt;br /&gt;
            editTab.href = loginUrl();&lt;br /&gt;
            editTab.textContent = &#039;Login to edit&#039;;&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        if (formButton) {&lt;br /&gt;
            editTab.href = formEditUrl(currentTitle());&lt;br /&gt;
            editTab.textContent = &#039;Edit&#039;;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function sectionToField(sectionText) {&lt;br /&gt;
        sectionText = (sectionText || &#039;&#039;).toLowerCase();&lt;br /&gt;
&lt;br /&gt;
        if (sectionText.indexOf(&#039;overview&#039;) !== -1) return &#039;overview&#039;;&lt;br /&gt;
        if (sectionText.indexOf(&#039;history&#039;) !== -1) return &#039;history&#039;;&lt;br /&gt;
        if (sectionText.indexOf(&#039;programs&#039;) !== -1) return &#039;programs&#039;;&lt;br /&gt;
        if (sectionText.indexOf(&#039;facilities&#039;) !== -1) return &#039;facilities&#039;;&lt;br /&gt;
        if (sectionText.indexOf(&#039;admissions&#039;) !== -1) return &#039;admissions&#039;;&lt;br /&gt;
        if (sectionText.indexOf(&#039;affiliations&#039;) !== -1) return &#039;affiliations&#039;;&lt;br /&gt;
        if (sectionText.indexOf(&#039;alumni&#039;) !== -1) return &#039;alumni&#039;;&lt;br /&gt;
        if (sectionText.indexOf(&#039;references&#039;) !== -1) return &#039;references&#039;;&lt;br /&gt;
&lt;br /&gt;
        return &#039;&#039;;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function rewriteSectionEditLinks() {&lt;br /&gt;
        var sectionLinks = document.querySelectorAll(&#039;.mw-editsection a&#039;);&lt;br /&gt;
&lt;br /&gt;
        sectionLinks.forEach(function (link) {&lt;br /&gt;
            var heading = link.closest(&#039;.mw-heading, h2, h3, h4&#039;);&lt;br /&gt;
            var headingText = heading ? heading.textContent : &#039;&#039;;&lt;br /&gt;
            var field = sectionToField(headingText);&lt;br /&gt;
&lt;br /&gt;
            if (!field) return;&lt;br /&gt;
&lt;br /&gt;
            if (!isLoggedIn()) {&lt;br /&gt;
                link.href = loginUrl();&lt;br /&gt;
                link.textContent = &#039;login to edit&#039;;&lt;br /&gt;
            } else {&lt;br /&gt;
                link.href = formEditUrl(currentTitle(), field);&lt;br /&gt;
                link.textContent = &#039;edit&#039;;&lt;br /&gt;
            }&lt;br /&gt;
        });&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function redirectRawCollegeEdit() {&lt;br /&gt;
        if (mw.config.get(&#039;wgAction&#039;) !== &#039;edit&#039;) return;&lt;br /&gt;
&lt;br /&gt;
        var textarea = document.querySelector(&#039;#wpTextbox1&#039;);&lt;br /&gt;
        if (!textarea) return;&lt;br /&gt;
&lt;br /&gt;
        if (textarea.value.indexOf(&#039;{{CollegePage&#039;) !== -1) {&lt;br /&gt;
            window.location.href = formEditUrl(currentTitle());&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function focusFormField() {&lt;br /&gt;
        var params = new URLSearchParams(window.location.search);&lt;br /&gt;
        var field = params.get(&#039;pf_focus&#039;);&lt;br /&gt;
&lt;br /&gt;
        if (!field) return;&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
            var selectors = [&lt;br /&gt;
                &#039;[name*=&amp;quot;[&#039; + field + &#039;]&amp;quot;]&#039;,&lt;br /&gt;
                &#039;[name=&amp;quot;&#039; + field + &#039;&amp;quot;]&#039;,&lt;br /&gt;
                &#039;textarea[name*=&amp;quot;&#039; + field + &#039;&amp;quot;]&#039;,&lt;br /&gt;
                &#039;input[name*=&amp;quot;&#039; + field + &#039;&amp;quot;]&#039;,&lt;br /&gt;
                &#039;#input_&#039; + field&lt;br /&gt;
            ];&lt;br /&gt;
&lt;br /&gt;
            for (var i = 0; i &amp;lt; selectors.length; i++) {&lt;br /&gt;
                var el = document.querySelector(selectors[i]);&lt;br /&gt;
                if (el) {&lt;br /&gt;
                    el.scrollIntoView({ behavior: &#039;smooth&#039;, block: &#039;center&#039; });&lt;br /&gt;
                    el.focus();&lt;br /&gt;
                    return;&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
        }, 500);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    $(function () {&lt;br /&gt;
        showLoginBox();&lt;br /&gt;
        rewriteMainEditTab();&lt;br /&gt;
        rewriteSectionEditLinks();&lt;br /&gt;
        redirectRawCollegeEdit();&lt;br /&gt;
        focusFormField();&lt;br /&gt;
    });&lt;br /&gt;
})();&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175651</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175651"/>
		<updated>2026-05-16T18:08:34Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;honour-college-edit-box&amp;quot; style=&amp;quot;background:#f5f8ff;border:1px solid #ccd6ee;padding:12px;margin-bottom:16px;border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Want to update this college page?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{#formlink:&lt;br /&gt;
form=CollegePage&lt;br /&gt;
|target={{FULLPAGENAME}}&lt;br /&gt;
|link text=Edit college details&lt;br /&gt;
|link type=button&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|&lt;br /&gt;
* B.A. (Core/Minor)&lt;br /&gt;
** Sociology&lt;br /&gt;
** Economics&lt;br /&gt;
** Education&lt;br /&gt;
** English&lt;br /&gt;
** History&lt;br /&gt;
** Political Science&lt;br /&gt;
** Environmental Science (SEC, MD)&lt;br /&gt;
* Interdisciplinary and Multidisciplinary Course&lt;br /&gt;
* Ability Enhancement Course (AEC)&lt;br /&gt;
* Skill Enhancement Course (SEC)&lt;br /&gt;
* Value Added Course (VAC)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{#if:{{{references|}}}|{{{references}}}|&lt;br /&gt;
* Official website&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Colleges]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175650</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175650"/>
		<updated>2026-05-16T10:27:11Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#ifeq:{{REVISIONUSER}}||&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;div style=&amp;quot;background:#f5f8ff;border:1px solid #ccd6ee;padding:12px;margin-bottom:16px;border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Want to update this college page?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{#formlink:&lt;br /&gt;
form=CollegePage&lt;br /&gt;
|target={{FULLPAGENAME}}&lt;br /&gt;
|link text=Edit college details&lt;br /&gt;
|link type=button&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|&lt;br /&gt;
* B.A. (Core/Minor)&lt;br /&gt;
** Sociology&lt;br /&gt;
** Economics&lt;br /&gt;
** Education&lt;br /&gt;
** English&lt;br /&gt;
** History&lt;br /&gt;
** Political Science&lt;br /&gt;
** Environmental Science (SEC, MD)&lt;br /&gt;
* Interdisciplinary and Multidisciplinary Course&lt;br /&gt;
* Ability Enhancement Course (AEC)&lt;br /&gt;
* Skill Enhancement Course (SEC)&lt;br /&gt;
* Value Added Course (VAC)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{#if:{{{references|}}}|{{{references}}}|&lt;br /&gt;
* Official website&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Colleges]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=MediaWiki:Common.js&amp;diff=175649</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=MediaWiki:Common.js&amp;diff=175649"/>
		<updated>2026-05-16T10:02:10Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// Force college page edits to open Page Forms instead of raw wikitext&lt;br /&gt;
&lt;br /&gt;
(function () {&lt;br /&gt;
    function pageTitle() {&lt;br /&gt;
        return mw.config.get(&#039;wgPageName&#039;);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function formEditUrl(title) {&lt;br /&gt;
        return mw.util.getUrl(&#039;Special:FormEdit/CollegePage/&#039; + title);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function redirectIfRawCollegeEdit() {&lt;br /&gt;
        var action = mw.config.get(&#039;wgAction&#039;);&lt;br /&gt;
        var title = pageTitle();&lt;br /&gt;
&lt;br /&gt;
        if (action === &#039;edit&#039;) {&lt;br /&gt;
            var textarea = document.querySelector(&#039;#wpTextbox1&#039;);&lt;br /&gt;
            if (textarea &amp;amp;&amp;amp; textarea.value.indexOf(&#039;{{CollegePage&#039;) !== -1) {&lt;br /&gt;
                window.location.href = formEditUrl(title);&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function rewriteEditTab() {&lt;br /&gt;
        var title = pageTitle();&lt;br /&gt;
        var formButton = document.querySelector(&#039;a[href*=&amp;quot;Special:FormEdit/CollegePage&amp;quot;]&#039;);&lt;br /&gt;
        var editTab = document.querySelector(&#039;#ca-edit a&#039;);&lt;br /&gt;
&lt;br /&gt;
        if (formButton &amp;amp;&amp;amp; editTab) {&lt;br /&gt;
            editTab.href = formEditUrl(title);&lt;br /&gt;
            editTab.textContent = &#039;Edit&#039;;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    $(function () {&lt;br /&gt;
        redirectIfRawCollegeEdit();&lt;br /&gt;
        rewriteEditTab();&lt;br /&gt;
    });&lt;br /&gt;
})();&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=MediaWiki:Common.js&amp;diff=175648</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=MediaWiki:Common.js&amp;diff=175648"/>
		<updated>2026-05-16T10:00:43Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;/* Any JavaScript here will be loaded for all users on every page load. */ // Redirect top Edit tab to Page Forms edit URL on college pages  mw.hook(&amp;#039;wikipage.content&amp;#039;).add(function () {      var formButton = document.querySelector(&amp;#039;a[href*=&amp;quot;Special:FormEdit/CollegePage&amp;quot;]&amp;#039;);     var editTab = document.querySelector(&amp;#039;#ca-edit a&amp;#039;);      if (formButton &amp;amp;&amp;amp; editTab) {         editTab.href = formButton.href;         editTab.textContent = &amp;#039;Edit&amp;#039;;     }  });&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
// Redirect top Edit tab to Page Forms edit URL on college pages&lt;br /&gt;
&lt;br /&gt;
mw.hook(&#039;wikipage.content&#039;).add(function () {&lt;br /&gt;
&lt;br /&gt;
    var formButton = document.querySelector(&#039;a[href*=&amp;quot;Special:FormEdit/CollegePage&amp;quot;]&#039;);&lt;br /&gt;
    var editTab = document.querySelector(&#039;#ca-edit a&#039;);&lt;br /&gt;
&lt;br /&gt;
    if (formButton &amp;amp;&amp;amp; editTab) {&lt;br /&gt;
        editTab.href = formButton.href;&lt;br /&gt;
        editTab.textContent = &#039;Edit&#039;;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175647</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175647"/>
		<updated>2026-05-16T09:53:54Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;background:#f5f8ff;border:1px solid #ccd6ee;padding:12px;margin-bottom:16px;border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Want to update this college page?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{#formlink:&lt;br /&gt;
form=CollegePage&lt;br /&gt;
|target={{FULLPAGENAME}}&lt;br /&gt;
|link text=Edit college details&lt;br /&gt;
|link type=button&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|&lt;br /&gt;
* B.A. (Core/Minor)&lt;br /&gt;
** Sociology&lt;br /&gt;
** Economics&lt;br /&gt;
** Education&lt;br /&gt;
** English&lt;br /&gt;
** History&lt;br /&gt;
** Political Science&lt;br /&gt;
** Environmental Science (SEC, MD)&lt;br /&gt;
* Interdisciplinary and Multidisciplinary Course&lt;br /&gt;
* Ability Enhancement Course (AEC)&lt;br /&gt;
* Skill Enhancement Course (SEC)&lt;br /&gt;
* Value Added Course (VAC)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{#if:{{{references|}}}|{{{references}}}|&lt;br /&gt;
* Official website&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Colleges]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175646</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175646"/>
		<updated>2026-05-16T09:48:06Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|&lt;br /&gt;
* B.A. (Core/Minor)&lt;br /&gt;
** Sociology&lt;br /&gt;
** Economics&lt;br /&gt;
** Education&lt;br /&gt;
** English&lt;br /&gt;
** History&lt;br /&gt;
** Political Science&lt;br /&gt;
** Environmental Science (SEC, MD)&lt;br /&gt;
* Interdisciplinary and Multidisciplinary Course&lt;br /&gt;
* Ability Enhancement Course (AEC)&lt;br /&gt;
* Skill Enhancement Course (SEC)&lt;br /&gt;
* Value Added Course (VAC)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{#if:{{{references|}}}|{{{references}}}|&lt;br /&gt;
* Official website&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Colleges]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Category:Colleges&amp;diff=175645</id>
		<title>Category:Colleges</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Category:Colleges&amp;diff=175645"/>
		<updated>2026-05-16T09:47:27Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;{{#default_form:CollegePage}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#default_form:CollegePage}}&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Form:CollegePage&amp;diff=175644</id>
		<title>Form:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Form:CollegePage&amp;diff=175644"/>
		<updated>2026-05-16T09:39:59Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;&amp;lt;noinclude&amp;gt; This is the form for creating and editing college pages. &amp;lt;/noinclude&amp;gt;  &amp;lt;includeonly&amp;gt; {{{for template|CollegePage}}}  {| class=&amp;quot;formtable&amp;quot; ! College Name: | {{{field|name|input type=text|mandatory}}} |- ! AISHE Code: | {{{field|aishe|input type=text}}} |- ! Type: | {{{field|type|input type=dropdown|values=Government,Private,Aided,Autonomous,Deemed University,Central University,State University}}} |- ! Affiliation: | {{{field|affiliation|input type=text}}} |- !...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the form for creating and editing college pages.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{{for template|CollegePage}}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;formtable&amp;quot;&lt;br /&gt;
! College Name:&lt;br /&gt;
| {{{field|name|input type=text|mandatory}}}&lt;br /&gt;
|-&lt;br /&gt;
! AISHE Code:&lt;br /&gt;
| {{{field|aishe|input type=text}}}&lt;br /&gt;
|-&lt;br /&gt;
! Type:&lt;br /&gt;
| {{{field|type|input type=dropdown|values=Government,Private,Aided,Autonomous,Deemed University,Central University,State University}}}&lt;br /&gt;
|-&lt;br /&gt;
! Affiliation:&lt;br /&gt;
| {{{field|affiliation|input type=text}}}&lt;br /&gt;
|-&lt;br /&gt;
! State:&lt;br /&gt;
| {{{field|state|input type=text}}}&lt;br /&gt;
|-&lt;br /&gt;
! District:&lt;br /&gt;
| {{{field|district|input type=text}}}&lt;br /&gt;
|-&lt;br /&gt;
! Status:&lt;br /&gt;
| {{{field|status|input type=dropdown|values=Active,Inactive,Pending Verification}}}&lt;br /&gt;
|-&lt;br /&gt;
! Overview:&lt;br /&gt;
| {{{field|overview|input type=textarea|rows=6}}}&lt;br /&gt;
|-&lt;br /&gt;
! History:&lt;br /&gt;
| {{{field|history|input type=textarea|rows=6}}}&lt;br /&gt;
|-&lt;br /&gt;
! Programs:&lt;br /&gt;
| {{{field|programs|input type=textarea|rows=12}}}&lt;br /&gt;
|-&lt;br /&gt;
! Facilities:&lt;br /&gt;
| {{{field|facilities|input type=textarea|rows=6}}}&lt;br /&gt;
|-&lt;br /&gt;
! Admissions:&lt;br /&gt;
| {{{field|admissions|input type=textarea|rows=6}}}&lt;br /&gt;
|-&lt;br /&gt;
! Affiliations:&lt;br /&gt;
| {{{field|affiliations|input type=textarea|rows=4}}}&lt;br /&gt;
|-&lt;br /&gt;
! Alumni:&lt;br /&gt;
| {{{field|alumni|input type=textarea|rows=5}}}&lt;br /&gt;
|-&lt;br /&gt;
! References:&lt;br /&gt;
| {{{field|references|input type=textarea|rows=5}}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{{end template}}}&lt;br /&gt;
&lt;br /&gt;
{{{standard input|summary}}}&lt;br /&gt;
{{{standard input|save}}}&lt;br /&gt;
{{{standard input|preview}}}&lt;br /&gt;
{{{standard input|cancel}}}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175643</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175643"/>
		<updated>2026-05-16T09:32:37Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|&lt;br /&gt;
* B.A. (Core/Minor)&lt;br /&gt;
** Sociology&lt;br /&gt;
** Economics&lt;br /&gt;
** Education&lt;br /&gt;
** English&lt;br /&gt;
** History&lt;br /&gt;
** Political Science&lt;br /&gt;
** Environmental Science (SEC, MD)&lt;br /&gt;
* Interdisciplinary and Multidisciplinary Course&lt;br /&gt;
* Ability Enhancement Course (AEC)&lt;br /&gt;
* Skill Enhancement Course (SEC)&lt;br /&gt;
* Value Added Course (VAC)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{#if:{{{references|}}}|{{{references}}}|&lt;br /&gt;
* Official website&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175634</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=175634"/>
		<updated>2026-03-09T21:10:31Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
new&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|Details about academic programs will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175633</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175633"/>
		<updated>2025-12-28T18:07:36Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Honour Wiki&#039;&#039;&#039; is a searchable public index of higher-education institutions in India.&lt;br /&gt;
&lt;br /&gt;
You can search institutions by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, &#039;&#039;&#039;institution type&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🔍 Search ==&lt;br /&gt;
Use the search bar at the top of the page to find institutions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quick links:&#039;&#039;&#039;&lt;br /&gt;
* [[Special:Search|Open search]]&lt;br /&gt;
* [[Special:Search?profile=advanced|Advanced search]]&lt;br /&gt;
* [[Special:Search?profile=all|Search everything]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧭 Popular starting points ==&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Colleges in Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Colleges in Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|Colleges in West Bengal]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Colleges in Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Colleges in Karnataka]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Union Territories ==&lt;br /&gt;
* [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[:Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[:Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[:Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About Honour Wiki ==&lt;br /&gt;
* [[Honour_Wiki:About|About]]&lt;br /&gt;
* [[Honour_Wiki:Privacy_policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175632</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175632"/>
		<updated>2025-12-28T18:06:45Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Honour Wiki&#039;&#039;&#039; is a searchable public index of higher-education institutions in India.&lt;br /&gt;
&lt;br /&gt;
You can search institutions by &#039;&#039;name&#039;&#039;, **AISHE code**, **state**, **district**, **institution type**, or **affiliation**.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🔍 Search ==&lt;br /&gt;
Use the search bar at the top of the page to find institutions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quick links:&#039;&#039;&#039;&lt;br /&gt;
* [[Special:Search|Open search]]&lt;br /&gt;
* [[Special:Search?profile=advanced|Advanced search]]&lt;br /&gt;
* [[Special:Search?profile=all|Search everything]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧭 Popular starting points ==&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Colleges in Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Colleges in Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|Colleges in West Bengal]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Colleges in Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Colleges in Karnataka]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Union Territories ==&lt;br /&gt;
* [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[:Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[:Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[:Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About Honour Wiki ==&lt;br /&gt;
* [[Honour_Wiki:About|About]]&lt;br /&gt;
* [[Honour_Wiki:Privacy_policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Honour_Wiki:Copyrights&amp;diff=175631</id>
		<title>Honour Wiki:Copyrights</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Honour_Wiki:Copyrights&amp;diff=175631"/>
		<updated>2025-12-28T17:58:44Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;{{DISPLAYTITLE:Copyrights}} __NOTOC__  This page explains how copyright works on Honour Wiki, what content can be reused, and how to report issues.  ----  == Summary == * &amp;#039;&amp;#039;&amp;#039;Honour Wiki content&amp;#039;&amp;#039;&amp;#039; includes wiki text, page structure, and community edits made on this site. * &amp;#039;&amp;#039;&amp;#039;Institution data&amp;#039;&amp;#039;&amp;#039; on many pages may be derived from structured public datasets (for example, AISHE-linked listings) and is presented for informational use. * &amp;#039;&amp;#039;&amp;#039;Logos, seals, and trademarks&amp;#039;&amp;#039;&amp;#039; bel...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Copyrights}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
This page explains how copyright works on Honour Wiki, what content can be reused, and how to report issues.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
* &#039;&#039;&#039;Honour Wiki content&#039;&#039;&#039; includes wiki text, page structure, and community edits made on this site.&lt;br /&gt;
* &#039;&#039;&#039;Institution data&#039;&#039;&#039; on many pages may be derived from structured public datasets (for example, AISHE-linked listings) and is presented for informational use.&lt;br /&gt;
* &#039;&#039;&#039;Logos, seals, and trademarks&#039;&#039;&#039; belong to their respective owners and are not claimed by Honour Wiki.&lt;br /&gt;
* If you believe something infringes copyright, contact us and we will review and act quickly.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Who owns what ==&lt;br /&gt;
=== 1) Text and edits written on Honour Wiki ===&lt;br /&gt;
Unless stated otherwise on a specific page, the text written directly on Honour Wiki (including edits and improvements made by contributors) is shared under the same terms as our site’s content license.&lt;br /&gt;
&lt;br /&gt;
See: [[Honour_Wiki:Disclaimers|Disclaimers]] and [[Honour_Wiki:Privacy_policy|Privacy policy]].&lt;br /&gt;
&lt;br /&gt;
=== 2) Auto-generated institution pages ===&lt;br /&gt;
Many institution pages are auto-generated from structured data to create a starting point. These pages are intended to be corrected and expanded over time.&lt;br /&gt;
&lt;br /&gt;
If a page contains information that is incorrect or should not be displayed, please report it.&lt;br /&gt;
&lt;br /&gt;
=== 3) Images, logos, and trademarks ===&lt;br /&gt;
Images, logos, institutional seals, and trademarks are owned by their respective organizations.  &lt;br /&gt;
Honour Wiki does not claim ownership of these marks.&lt;br /&gt;
&lt;br /&gt;
If you upload images:&lt;br /&gt;
* only upload images you created yourself, or&lt;br /&gt;
* images you have permission to use, or&lt;br /&gt;
* images that are clearly licensed for reuse.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== What you can reuse from Honour Wiki ==&lt;br /&gt;
You may reuse content from Honour Wiki only if:&lt;br /&gt;
* you comply with the license shown on this site (and any attribution requirements), and&lt;br /&gt;
* you respect third-party rights (logos, trademarks, photos, and other copyrighted works).&lt;br /&gt;
&lt;br /&gt;
If a page includes third-party material, that material may have additional restrictions even if the wiki text is reusable.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== What you should NOT copy from other websites ==&lt;br /&gt;
Do not copy-paste content from:&lt;br /&gt;
* college websites&lt;br /&gt;
* Wikipedia or other wikis (unless license-compatible and properly attributed)&lt;br /&gt;
* brochures, PDFs, rankings, or news articles&lt;br /&gt;
&lt;br /&gt;
Instead, write your own summary in your own words and cite sources where needed.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Reporting a copyright issue ==&lt;br /&gt;
If you believe content on Honour Wiki infringes copyright, contact us with:&lt;br /&gt;
&lt;br /&gt;
* The URL(s) of the page(s)&lt;br /&gt;
* What content you believe is infringing&lt;br /&gt;
* Proof that you own the rights or are authorized to report on behalf of the owner&lt;br /&gt;
* Your preferred contact email&lt;br /&gt;
&lt;br /&gt;
We will review the request and may remove or revise content while investigating.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
If your wiki has a contact page, link it here. Otherwise, replace this with the correct email.&lt;br /&gt;
&lt;br /&gt;
* [[Honour_Wiki:About|About Honour Wiki]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175630</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175630"/>
		<updated>2025-12-28T13:22:26Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Honour Wiki&#039;&#039;&#039; is a searchable public index of higher-education institutions in India.&lt;br /&gt;
&lt;br /&gt;
You can search institutions by **name**, **AISHE code**, **state**, **district**, **institution type**, or **affiliation**.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🔍 Search ==&lt;br /&gt;
Use the search bar at the top of the page to find institutions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quick links:&#039;&#039;&#039;&lt;br /&gt;
* [[Special:Search|Open search]]&lt;br /&gt;
* [[Special:Search?profile=advanced|Advanced search]]&lt;br /&gt;
* [[Special:Search?profile=all|Search everything]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧭 Popular starting points ==&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Colleges in Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Colleges in Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|Colleges in West Bengal]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Colleges in Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Colleges in Karnataka]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Union Territories ==&lt;br /&gt;
* [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[:Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[:Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[:Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About Honour Wiki ==&lt;br /&gt;
* [[Honour_Wiki:About|About]]&lt;br /&gt;
* [[Honour_Wiki:Privacy_policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175629</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175629"/>
		<updated>2025-12-28T13:21:31Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Honour Wiki&#039;&#039;&#039; is a searchable public index of higher-education institutions in India.&lt;br /&gt;
&lt;br /&gt;
You can search institutions by **name**, **AISHE code**, **state**, **district**, **institution type**, or **affiliation**.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Examples:&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🔍 Search ==&lt;br /&gt;
Use the search bar at the top of the page to find institutions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quick links:&#039;&#039;&#039;&lt;br /&gt;
* [[Special:Search|Open search]]&lt;br /&gt;
* [[Special:Search?profile=advanced|Advanced search]]&lt;br /&gt;
* [[Special:Search?profile=all|Search everything]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧭 Popular starting points ==&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Colleges in Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Colleges in Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|Colleges in West Bengal]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Colleges in Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Colleges in Karnataka]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Union Territories ==&lt;br /&gt;
* [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[:Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[:Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[:Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🎓 Institution types ==&lt;br /&gt;
&#039;&#039;&#039;Core&#039;&#039;&#039;&lt;br /&gt;
* [[:Category:Universities|Universities]]&lt;br /&gt;
* [[:Category:Colleges|Colleges]]&lt;br /&gt;
* [[:Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Professional&#039;&#039;&#039;&lt;br /&gt;
* [[:Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[:Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[:Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
* [[:Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[:Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[:Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ✅ Institution status ==&lt;br /&gt;
* [[:Category:Status: Active|Active institutions]]&lt;br /&gt;
* [[:Category:Status: Inactive|Inactive institutions]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About Honour Wiki ==&lt;br /&gt;
* [[Honour_Wiki:About|About]]&lt;br /&gt;
* [[Honour_Wiki:Privacy_policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175628</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175628"/>
		<updated>2025-12-28T13:18:34Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border:1px solid #a2a9b1; background:#f8f9fa; padding:16px; border-radius:10px; margin-bottom:18px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:170%; font-weight:700;&amp;quot;&amp;gt;Honour Wiki&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:6px; font-size:105%; line-height:1.6;&amp;quot;&amp;gt;&lt;br /&gt;
A searchable index of higher-education institutions in India.  &lt;br /&gt;
Search by &amp;lt;b&amp;gt;institution name&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;AISHE code&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;state&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;district&amp;lt;/b&amp;gt;, or &amp;lt;b&amp;gt;affiliation&amp;lt;/b&amp;gt;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:10px; color:#54595d;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Examples:&amp;lt;/b&amp;gt; &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-bottom:24px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;form action=&amp;quot;/index.php&amp;quot; method=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;title&amp;quot; value=&amp;quot;Special:Search&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;input&lt;br /&gt;
    type=&amp;quot;search&amp;quot;&lt;br /&gt;
    name=&amp;quot;search&amp;quot;&lt;br /&gt;
    placeholder=&amp;quot;Search institutions by name, AISHE code, state, district…&amp;quot;&lt;br /&gt;
    style=&amp;quot;&lt;br /&gt;
      width:100%;&lt;br /&gt;
      max-width:720px;&lt;br /&gt;
      padding:14px 16px;&lt;br /&gt;
      font-size:16px;&lt;br /&gt;
      border:1px solid #a2a9b1;&lt;br /&gt;
      border-radius:10px;&lt;br /&gt;
    &amp;quot;&lt;br /&gt;
  &amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:16px; flex-wrap:wrap; margin-bottom:24px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; padding:14px; border-radius:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Quick start&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:8px; line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
• Search by AISHE code&amp;lt;br&amp;gt;&lt;br /&gt;
• Search by institution name&amp;lt;br&amp;gt;&lt;br /&gt;
• Search by state or district&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; padding:14px; border-radius:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Popular states&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:8px; line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; padding:14px; border-radius:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Common filters&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:8px; line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher training institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Status: Active|Active institutions]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Browse by State ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:24px; flex-wrap:wrap; line-height:1.9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:220px;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Assam|Assam]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Bihar|Bihar]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Goa|Goa]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Gujarat|Gujarat]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Haryana|Haryana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:220px;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Kerala|Kerala]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Manipur|Manipur]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Meghalaya|Meghalaya]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Mizoram|Mizoram]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Nagaland|Nagaland]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Odisha|Odisha]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:220px;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Rajasthan|Rajasthan]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Sikkim|Sikkim]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Telangana|Telangana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tripura|Tripura]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttarakhand|Uttarakhand]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Union Territories ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:24px; flex-wrap:wrap; line-height:1.9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chandigarh|Chandigarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Ladakh|Ladakh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Lakshadweep|Lakshadweep]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Institution types ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:24px; flex-wrap:wrap; line-height:1.9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Core&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges|Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher Training Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Professional&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Medical Colleges|Medical Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Pharmacy Colleges|Pharmacy Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Other&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Arts and Science Colleges|Arts and Science Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Commerce Colleges|Commerce Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Management Institutes|Management Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Status ==&lt;br /&gt;
[[:Category:Status: Active|Active institutions]] · [[:Category:Status: Inactive|Inactive institutions]]&lt;br /&gt;
&lt;br /&gt;
== About ==&lt;br /&gt;
[[Honour_Wiki:About|About Honour Wiki]] · [[Honour_Wiki:Privacy_policy|Privacy policy]] · [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175627</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175627"/>
		<updated>2025-12-28T13:17:37Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border:1px solid #a2a9b1; background:#f8f9fa; padding:14px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:160%; font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;Honour Wiki&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:105%;&amp;quot;&amp;gt;&lt;br /&gt;
A searchable index of higher-education institutions in India. Search by &amp;lt;b&amp;gt;name&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;AISHE code&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;state&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;district&amp;lt;/b&amp;gt;, or &amp;lt;b&amp;gt;affiliation&amp;lt;/b&amp;gt;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Try:&amp;lt;/b&amp;gt; &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;&lt;br /&gt;
  margin:16px 0;&lt;br /&gt;
  padding:16px;&lt;br /&gt;
  background:#f8f9fa;&lt;br /&gt;
  border:1px solid #eaecf0;&lt;br /&gt;
  border-radius:10px;&lt;br /&gt;
&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:120%; font-weight:600; margin-bottom:8px;&amp;quot;&amp;gt;&lt;br /&gt;
Search institutions&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;form action=&amp;quot;/index.php&amp;quot; method=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;title&amp;quot; value=&amp;quot;Special:Search&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;input&lt;br /&gt;
    type=&amp;quot;search&amp;quot;&lt;br /&gt;
    name=&amp;quot;search&amp;quot;&lt;br /&gt;
    placeholder=&amp;quot;Search by AISHE code, college name, state, district…&amp;quot;&lt;br /&gt;
    style=&amp;quot;&lt;br /&gt;
      width:100%;&lt;br /&gt;
      max-width:640px;&lt;br /&gt;
      padding:14px;&lt;br /&gt;
      font-size:16px;&lt;br /&gt;
      border:1px solid #a2a9b1;&lt;br /&gt;
      border-radius:8px;&lt;br /&gt;
    &amp;quot;&lt;br /&gt;
  &amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:8px; color:#54595d; font-size:90%;&amp;quot;&amp;gt;&lt;br /&gt;
Examples: &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;height:12px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:12px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; background:#fff; padding:12px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;🔍 Search&amp;lt;/div&amp;gt;&lt;br /&gt;
Use the search bar at the top.&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:8px; line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; background:#fff; padding:12px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;🧭 Popular starting points&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; background:#fff; padding:12px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;⚡ Quick filters&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Status: Active|Active institutions]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Status: Inactive|Inactive institutions]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher training]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;height:14px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:16px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Assam|Assam]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Bihar|Bihar]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Goa|Goa]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Gujarat|Gujarat]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Haryana|Haryana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Kerala|Kerala]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Manipur|Manipur]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Meghalaya|Meghalaya]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Mizoram|Mizoram]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Nagaland|Nagaland]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Odisha|Odisha]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Rajasthan|Rajasthan]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Sikkim|Sikkim]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Telangana|Telangana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tripura|Tripura]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttarakhand|Uttarakhand]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Union Territories ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:16px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:280px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chandigarh|Chandigarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:280px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Ladakh|Ladakh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Lakshadweep|Lakshadweep]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🎓 Institution types ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:16px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Core&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges|Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher Training Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Professional&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Medical Colleges|Medical Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Pharmacy Colleges|Pharmacy Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Other&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Arts and Science Colleges|Arts and Science Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Commerce Colleges|Commerce Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Management Institutes|Management Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ✅ Status ==&lt;br /&gt;
[[:Category:Status: Active|Active institutions]] · [[:Category:Status: Inactive|Inactive institutions]]&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About ==&lt;br /&gt;
[[Honour_Wiki:About|About Honour Wiki]] · [[Honour_Wiki:Privacy_policy|Privacy policy]] · [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175626</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175626"/>
		<updated>2025-12-28T13:07:37Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border:1px solid #a2a9b1; background:#f8f9fa; padding:14px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:160%; font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;Honour Wiki&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:105%;&amp;quot;&amp;gt;&lt;br /&gt;
A searchable index of higher-education institutions in India. Search by &amp;lt;b&amp;gt;name&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;AISHE code&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;state&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;district&amp;lt;/b&amp;gt;, or &amp;lt;b&amp;gt;affiliation&amp;lt;/b&amp;gt;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Try:&amp;lt;/b&amp;gt; &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt; · &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;height:12px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:12px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; background:#fff; padding:12px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;🔍 Search&amp;lt;/div&amp;gt;&lt;br /&gt;
Use the search bar at the top.&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:8px; line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; background:#fff; padding:12px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;🧭 Popular starting points&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; border:1px solid #eaecf0; background:#fff; padding:12px; border-radius:8px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-weight:700; margin-bottom:6px;&amp;quot;&amp;gt;⚡ Quick filters&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;line-height:1.7;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Status: Active|Active institutions]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Status: Inactive|Inactive institutions]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher training]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;height:14px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:16px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Assam|Assam]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Bihar|Bihar]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Goa|Goa]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Gujarat|Gujarat]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Haryana|Haryana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Kerala|Kerala]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Manipur|Manipur]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Meghalaya|Meghalaya]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Mizoram|Mizoram]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Nagaland|Nagaland]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Odisha|Odisha]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:240px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Rajasthan|Rajasthan]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Sikkim|Sikkim]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Telangana|Telangana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tripura|Tripura]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttarakhand|Uttarakhand]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Union Territories ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:16px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:280px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chandigarh|Chandigarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:280px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Ladakh|Ladakh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Lakshadweep|Lakshadweep]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🎓 Institution types ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:16px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Core&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges|Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher Training Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Professional&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Medical Colleges|Medical Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Pharmacy Colleges|Pharmacy Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1; min-width:260px; line-height:1.8;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Other&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Arts and Science Colleges|Arts and Science Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Commerce Colleges|Commerce Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Management Institutes|Management Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ✅ Status ==&lt;br /&gt;
[[:Category:Status: Active|Active institutions]] · [[:Category:Status: Inactive|Inactive institutions]]&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About ==&lt;br /&gt;
[[Honour_Wiki:About|About Honour Wiki]] · [[Honour_Wiki:Privacy_policy|Privacy policy]] · [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175625</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175625"/>
		<updated>2025-12-28T13:05:28Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;font-size:170%; text-align:left;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
A searchable index of higher-education institutions in India.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Use &#039;&#039;&#039;AISHE codes&#039;&#039;&#039;, &#039;&#039;&#039;institution names&#039;&#039;&#039;, &#039;&#039;&#039;states&#039;&#039;&#039;, &#039;&#039;&#039;districts&#039;&#039;&#039;, and &#039;&#039;&#039;affiliations&#039;&#039;&#039; to find the right page fast.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Quick start ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | 1) Search&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | 2) Browse&lt;br /&gt;
! style=&amp;quot;width:34%; text-align:left;&amp;quot; | 3) Explore&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;Try searching&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;Start from a state&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;Useful shortcuts&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Status: Active|Active institutions]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Status: Inactive|Inactive institutions]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Universities|Universities]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Engineering Colleges|Engineering colleges]]&lt;br /&gt;
&amp;lt;br&amp;gt;[[:Category:Teacher Training Institutes|Teacher training]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Browse by State ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:33%; text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Assam|Assam]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Bihar|Bihar]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Goa|Goa]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Gujarat|Gujarat]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Haryana|Haryana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;width:33%; text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Kerala|Kerala]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Manipur|Manipur]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Meghalaya|Meghalaya]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Mizoram|Mizoram]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Nagaland|Nagaland]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Odisha|Odisha]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;width:34%; text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Colleges in Rajasthan|Rajasthan]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Sikkim|Sikkim]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Telangana|Telangana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tripura|Tripura]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Uttarakhand|Uttarakhand]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;Union Territories are listed below.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Union Territories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width:50%; text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chandigarh|Chandigarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;width:50%; text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Ladakh|Ladakh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Lakshadweep|Lakshadweep]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Institution types ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | Core&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | Professional&lt;br /&gt;
! style=&amp;quot;width:34%; text-align:left;&amp;quot; | Other&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges|Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher Training Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Medical Colleges|Medical Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Pharmacy Colleges|Pharmacy Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
[[:Category:Arts and Science Colleges|Arts and Science Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Commerce Colleges|Commerce Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Management Institutes|Management Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== About ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
[[Honour_Wiki:About|About Honour Wiki]] · [[Honour_Wiki:Privacy_policy|Privacy policy]] · [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175624</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175624"/>
		<updated>2025-12-28T13:02:29Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left; font-size:170%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;Honour Wiki&#039;&#039;&#039; is an index of higher-education institutions in India.&lt;br /&gt;
&lt;br /&gt;
Search by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, &#039;&#039;&#039;type&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Try these:&#039;&#039;&#039;&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Search ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:35%; text-align:left;&amp;quot; | Examples&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | What works best&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* Full institution names&lt;br /&gt;
* AISHE codes&lt;br /&gt;
* State + district in the same query&lt;br /&gt;
* Type + state (example: &amp;lt;code&amp;gt;engineering maharashtra&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Affiliation/university name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🧭 Browse ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:50%; text-align:left;&amp;quot; | Browse by State&lt;br /&gt;
! style=&amp;quot;width:50%; text-align:left;&amp;quot; | Browse by Union Territory&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
;States&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
;Union Territories&lt;br /&gt;
* [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[:Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[:Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[:Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🎓 Institution types ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | Core&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | Professional&lt;br /&gt;
! style=&amp;quot;width:34%; text-align:left;&amp;quot; | Other&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Universities|Universities]]&lt;br /&gt;
* [[:Category:Colleges|Colleges]]&lt;br /&gt;
* [[:Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[:Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[:Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[:Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[:Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ✅ Status ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:50%; text-align:left;&amp;quot; | Operational status&lt;br /&gt;
! style=&amp;quot;width:50%; text-align:left;&amp;quot; | Affiliation browsing&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Status: Active|Active institutions]]&lt;br /&gt;
* [[:Category:Status: Inactive|Inactive institutions]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Affiliated institutions|All affiliated institutions]]&lt;br /&gt;
* [[:Category:Affiliations|All affiliations]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About ==&lt;br /&gt;
* [[Honour_Wiki:About|About Honour Wiki]]&lt;br /&gt;
* [[Honour_Wiki:Privacy_policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175623</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175623"/>
		<updated>2025-12-28T13:00:06Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;font-size:170%; text-align:left;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;Honour Wiki&#039;&#039;&#039; is an index of higher-education institutions in India.  &lt;br /&gt;
Search by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Quick tips&#039;&#039;&#039;&lt;br /&gt;
* Try an AISHE code like &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;&lt;br /&gt;
* Try a full name like &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
* Try a query like &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
== 🔍 Search ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:35%; text-align:left;&amp;quot; | Examples&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | What you can search&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;  &lt;br /&gt;
* &amp;lt;code&amp;gt;C-53836&amp;lt;/code&amp;gt;  &lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari Govt PTTI&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* Institution name&lt;br /&gt;
* AISHE code&lt;br /&gt;
* State and district&lt;br /&gt;
* Affiliation / university&lt;br /&gt;
* Type (engineering, medical, teacher training, etc.)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🧭 Browse ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:50%; text-align:left;&amp;quot; | Browse by State&lt;br /&gt;
! style=&amp;quot;width:50%; text-align:left;&amp;quot; | Browse by Union Territory&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[:Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[:Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[:Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🎓 Institution types ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | Core&lt;br /&gt;
! style=&amp;quot;width:33%; text-align:left;&amp;quot; | Professional&lt;br /&gt;
! style=&amp;quot;width:34%; text-align:left;&amp;quot; | Other&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Universities|Universities]]&lt;br /&gt;
* [[:Category:Colleges|Colleges]]&lt;br /&gt;
* [[:Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[:Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[:Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
style=&amp;quot;text-align:left;&amp;quot; |&lt;br /&gt;
* [[:Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[:Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[:Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ✅ Status ==&lt;br /&gt;
* [[:Category:Status: Active|Active institutions]]&lt;br /&gt;
* [[:Category:Status: Inactive|Inactive institutions]]&lt;br /&gt;
&lt;br /&gt;
== ℹ️ About ==&lt;br /&gt;
* [[Honour_Wiki:About|About Honour Wiki]]&lt;br /&gt;
* [[Honour_Wiki:Privacy_policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175622</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175622"/>
		<updated>2025-12-28T12:57:33Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%; text-align:center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;font-size:170%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;, or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site to quickly find institutions.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:60%; margin:auto; text-align:center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Example Searches&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%; text-align:center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! West &amp;amp; Central !! North &amp;amp; East !! South &amp;amp; North-East&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Colleges in Maharashtra|Maharashtra]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Gujarat|Gujarat]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Rajasthan|Rajasthan]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Bihar|Bihar]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jharkhand|Jharkhand]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in West Bengal|West Bengal]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Odisha|Odisha]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Punjab|Punjab]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Haryana|Haryana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Karnataka|Karnataka]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Kerala|Kerala]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Telangana|Telangana]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Assam|Assam]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Manipur|Manipur]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Meghalaya|Meghalaya]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Mizoram|Mizoram]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Nagaland|Nagaland]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
|}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:70%; margin:auto; text-align:center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Union Territories&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Colleges in Delhi|Delhi (NCT)]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Ladakh|Ladakh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Chandigarh|Chandigarh]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Puducherry|Puducherry]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Lakshadweep|Lakshadweep]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
|}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%; text-align:center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Core Institutions !! Professional Institutions !! Other Institutions&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Universities|Universities]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Colleges|Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Teacher Training Institutes|Teacher Training Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Engineering Colleges|Engineering Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Medical Colleges|Medical Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Pharmacy Colleges|Pharmacy Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Arts and Science Colleges|Arts and Science Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Commerce Colleges|Commerce Colleges]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Management Institutes|Management Institutes]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:40%; margin:auto; text-align:center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Institution Status&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
[[:Category:Status: Active|Active Institutions]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
|}&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:40%; margin:auto; text-align:center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
[[Honour_Wiki:About|About Honour Wiki]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Honour_Wiki:Privacy policy|Privacy policy]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Honour_Wiki:Disclaimers|Disclaimers]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175621</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175621"/>
		<updated>2025-12-28T12:55:38Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&#039;&#039;Browse institutions state-wise across India.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
&#039;&#039;Institutions in Union Territories.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[:Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[:Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[:Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[:Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
&#039;&#039;Explore institutions by category.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Core Institutions&#039;&#039;&#039;&lt;br /&gt;
* [[:Category:Universities|Universities]]&lt;br /&gt;
* [[:Category:Colleges|Colleges]]&lt;br /&gt;
* [[:Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Professional Institutions&#039;&#039;&#039;&lt;br /&gt;
* [[:Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[:Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[:Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Other Institutions&#039;&#039;&#039;&lt;br /&gt;
* [[:Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[:Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[:Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
&#039;&#039;Current operational status.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[:Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[:Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[:Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[Honour_Wiki:About|About Honour Wiki]]&lt;br /&gt;
* [[Honour_Wiki:Privacy policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175620</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175620"/>
		<updated>2025-12-28T12:53:44Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: /* 🗺️ Browse by State */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&#039;&#039;Browse institutions state-wise.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[:Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[:Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[:Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[:Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[:Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[:Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[:Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[:Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[:Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[:Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[:Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[:Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[:Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[:Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[:Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[:Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[:Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
&#039;&#039;&#039;Union Territories:&#039;&#039;&#039; [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]] · [[:Category:Colleges in Chandigarh|Chandigarh]] · [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]] · [[:Category:Colleges in Delhi|Delhi (NCT)]] · [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]] · [[:Category:Colleges in Ladakh|Ladakh]] · [[:Category:Colleges in Lakshadweep|Lakshadweep]] · [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
&#039;&#039;&#039;Core:&#039;&#039;&#039; [[:Category:Universities|Universities]] · [[:Category:Colleges|Colleges]] · [[:Category:Teacher Training Institutes|Teacher Training Institutes]] · [[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Professional:&#039;&#039;&#039; [[:Category:Engineering Colleges|Engineering Colleges]] · [[:Category:Medical Colleges|Medical Colleges]] · [[:Category:Pharmacy Colleges|Pharmacy Colleges]] · [[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Other:&#039;&#039;&#039; [[:Category:Arts and Science Colleges|Arts and Science Colleges]] · [[:Category:Commerce Colleges|Commerce Colleges]] · [[:Category:Management Institutes|Management Institutes]] · [[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[:Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[:Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[:Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[:Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[Honour_Wiki:About|About Honour Wiki]]&lt;br /&gt;
* [[Honour_Wiki:Privacy policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175619</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175619"/>
		<updated>2025-12-28T12:52:43Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: /* 🧾 About */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&#039;&#039;Click a state to browse institutions within it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;A–H:&#039;&#039;&#039; [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]] · [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]] · [[:Category:Colleges in Assam|Assam]] · [[:Category:Colleges in Bihar|Bihar]] · [[:Category:Colleges in Chhattisgarh|Chhattisgarh]] · [[:Category:Colleges in Goa|Goa]] · [[:Category:Colleges in Gujarat|Gujarat]] · [[:Category:Colleges in Haryana|Haryana]] · [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;J–M:&#039;&#039;&#039; [[:Category:Colleges in Jharkhand|Jharkhand]] · [[:Category:Colleges in Karnataka|Karnataka]] · [[:Category:Colleges in Kerala|Kerala]] · [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]] · [[:Category:Colleges in Maharashtra|Maharashtra]] · [[:Category:Colleges in Manipur|Manipur]] · [[:Category:Colleges in Meghalaya|Meghalaya]] · [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N–P:&#039;&#039;&#039; [[:Category:Colleges in Nagaland|Nagaland]] · [[:Category:Colleges in Odisha|Odisha]] · [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;R–W:&#039;&#039;&#039; [[:Category:Colleges in Rajasthan|Rajasthan]] · [[:Category:Colleges in Sikkim|Sikkim]] · [[:Category:Colleges in Tamil Nadu|Tamil Nadu]] · [[:Category:Colleges in Telangana|Telangana]] · [[:Category:Colleges in Tripura|Tripura]] · [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]] · [[:Category:Colleges in Uttarakhand|Uttarakhand]] · [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
&#039;&#039;&#039;Union Territories:&#039;&#039;&#039; [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]] · [[:Category:Colleges in Chandigarh|Chandigarh]] · [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]] · [[:Category:Colleges in Delhi|Delhi (NCT)]] · [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]] · [[:Category:Colleges in Ladakh|Ladakh]] · [[:Category:Colleges in Lakshadweep|Lakshadweep]] · [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
&#039;&#039;&#039;Core:&#039;&#039;&#039; [[:Category:Universities|Universities]] · [[:Category:Colleges|Colleges]] · [[:Category:Teacher Training Institutes|Teacher Training Institutes]] · [[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Professional:&#039;&#039;&#039; [[:Category:Engineering Colleges|Engineering Colleges]] · [[:Category:Medical Colleges|Medical Colleges]] · [[:Category:Pharmacy Colleges|Pharmacy Colleges]] · [[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Other:&#039;&#039;&#039; [[:Category:Arts and Science Colleges|Arts and Science Colleges]] · [[:Category:Commerce Colleges|Commerce Colleges]] · [[:Category:Management Institutes|Management Institutes]] · [[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[:Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[:Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[:Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[:Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[Honour_Wiki:About|About Honour Wiki]]&lt;br /&gt;
* [[Honour_Wiki:Privacy policy|Privacy policy]]&lt;br /&gt;
* [[Honour_Wiki:Disclaimers|Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175618</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175618"/>
		<updated>2025-12-28T12:51:07Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&#039;&#039;Click a state to browse institutions within it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;A–H:&#039;&#039;&#039; [[:Category:Colleges in Andhra Pradesh|Andhra Pradesh]] · [[:Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]] · [[:Category:Colleges in Assam|Assam]] · [[:Category:Colleges in Bihar|Bihar]] · [[:Category:Colleges in Chhattisgarh|Chhattisgarh]] · [[:Category:Colleges in Goa|Goa]] · [[:Category:Colleges in Gujarat|Gujarat]] · [[:Category:Colleges in Haryana|Haryana]] · [[:Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;J–M:&#039;&#039;&#039; [[:Category:Colleges in Jharkhand|Jharkhand]] · [[:Category:Colleges in Karnataka|Karnataka]] · [[:Category:Colleges in Kerala|Kerala]] · [[:Category:Colleges in Madhya Pradesh|Madhya Pradesh]] · [[:Category:Colleges in Maharashtra|Maharashtra]] · [[:Category:Colleges in Manipur|Manipur]] · [[:Category:Colleges in Meghalaya|Meghalaya]] · [[:Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N–P:&#039;&#039;&#039; [[:Category:Colleges in Nagaland|Nagaland]] · [[:Category:Colleges in Odisha|Odisha]] · [[:Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;R–W:&#039;&#039;&#039; [[:Category:Colleges in Rajasthan|Rajasthan]] · [[:Category:Colleges in Sikkim|Sikkim]] · [[:Category:Colleges in Tamil Nadu|Tamil Nadu]] · [[:Category:Colleges in Telangana|Telangana]] · [[:Category:Colleges in Tripura|Tripura]] · [[:Category:Colleges in Uttar Pradesh|Uttar Pradesh]] · [[:Category:Colleges in Uttarakhand|Uttarakhand]] · [[:Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
&#039;&#039;&#039;Union Territories:&#039;&#039;&#039; [[:Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]] · [[:Category:Colleges in Chandigarh|Chandigarh]] · [[:Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]] · [[:Category:Colleges in Delhi|Delhi (NCT)]] · [[:Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]] · [[:Category:Colleges in Ladakh|Ladakh]] · [[:Category:Colleges in Lakshadweep|Lakshadweep]] · [[:Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
&#039;&#039;&#039;Core:&#039;&#039;&#039; [[:Category:Universities|Universities]] · [[:Category:Colleges|Colleges]] · [[:Category:Teacher Training Institutes|Teacher Training Institutes]] · [[:Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Professional:&#039;&#039;&#039; [[:Category:Engineering Colleges|Engineering Colleges]] · [[:Category:Medical Colleges|Medical Colleges]] · [[:Category:Pharmacy Colleges|Pharmacy Colleges]] · [[:Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Other:&#039;&#039;&#039; [[:Category:Arts and Science Colleges|Arts and Science Colleges]] · [[:Category:Commerce Colleges|Commerce Colleges]] · [[:Category:Management Institutes|Management Institutes]] · [[:Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[:Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[:Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[:Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[:Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[About Honour Wiki]]&lt;br /&gt;
* [[Privacy policy]]&lt;br /&gt;
* [[Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175617</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175617"/>
		<updated>2025-12-28T12:47:36Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&#039;&#039;Click a state to browse institutions within it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;A–H:&#039;&#039;&#039; [[Category:Colleges in Andhra Pradesh|Andhra Pradesh]] · [[Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]] · [[Category:Colleges in Assam|Assam]] · [[Category:Colleges in Bihar|Bihar]] · [[Category:Colleges in Chhattisgarh|Chhattisgarh]] · [[Category:Colleges in Goa|Goa]] · [[Category:Colleges in Gujarat|Gujarat]] · [[Category:Colleges in Haryana|Haryana]] · [[Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;J–M:&#039;&#039;&#039; [[Category:Colleges in Jharkhand|Jharkhand]] · [[Category:Colleges in Karnataka|Karnataka]] · [[Category:Colleges in Kerala|Kerala]] · [[Category:Colleges in Madhya Pradesh|Madhya Pradesh]] · [[Category:Colleges in Maharashtra|Maharashtra]] · [[Category:Colleges in Manipur|Manipur]] · [[Category:Colleges in Meghalaya|Meghalaya]] · [[Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N–P:&#039;&#039;&#039; [[Category:Colleges in Nagaland|Nagaland]] · [[Category:Colleges in Odisha|Odisha]] · [[Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;R–W:&#039;&#039;&#039; [[Category:Colleges in Rajasthan|Rajasthan]] · [[Category:Colleges in Sikkim|Sikkim]] · [[Category:Colleges in Tamil Nadu|Tamil Nadu]] · [[Category:Colleges in Telangana|Telangana]] · [[Category:Colleges in Tripura|Tripura]] · [[Category:Colleges in Uttar Pradesh|Uttar Pradesh]] · [[Category:Colleges in Uttarakhand|Uttarakhand]] · [[Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
&#039;&#039;&#039;Union Territories:&#039;&#039;&#039; [[Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]] · [[Category:Colleges in Chandigarh|Chandigarh]] · [[Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]] · [[Category:Colleges in Delhi|Delhi (NCT)]] · [[Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]] · [[Category:Colleges in Ladakh|Ladakh]] · [[Category:Colleges in Lakshadweep|Lakshadweep]] · [[Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
&#039;&#039;&#039;Core:&#039;&#039;&#039; [[Category:Universities|Universities]] · [[Category:Colleges|Colleges]] · [[Category:Teacher Training Institutes|Teacher Training Institutes]] · [[Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Professional:&#039;&#039;&#039; [[Category:Engineering Colleges|Engineering Colleges]] · [[Category:Medical Colleges|Medical Colleges]] · [[Category:Pharmacy Colleges|Pharmacy Colleges]] · [[Category:Law Colleges|Law Colleges]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Other:&#039;&#039;&#039; [[Category:Arts and Science Colleges|Arts and Science Colleges]] · [[Category:Commerce Colleges|Commerce Colleges]] · [[Category:Management Institutes|Management Institutes]] · [[Category:Education Colleges|Education Colleges]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[About Honour Wiki]]&lt;br /&gt;
* [[Privacy policy]]&lt;br /&gt;
* [[Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175616</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175616"/>
		<updated>2025-12-28T12:45:36Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: /* 🗺️ Browse by State */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
! Column 1 !! Column 2 !! Column 3&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
||&lt;br /&gt;
* [[Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
||&lt;br /&gt;
* [[Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | Union Territories&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
! Core !! Professional !! Other&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Universities|Universities]]&lt;br /&gt;
* [[Category:Colleges|Colleges]]&lt;br /&gt;
* [[Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[About Honour Wiki]]&lt;br /&gt;
* [[Privacy policy]]&lt;br /&gt;
* [[Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175615</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175615"/>
		<updated>2025-12-28T12:41:17Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: /* 🎓 Browse by Institution Type */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
! Column 1 !! Column 2 !! Column 3&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | Union Territories&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
! Core !! Professional !! Other&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Universities|Universities]]&lt;br /&gt;
* [[Category:Colleges|Colleges]]&lt;br /&gt;
* [[Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[About Honour Wiki]]&lt;br /&gt;
* [[Privacy policy]]&lt;br /&gt;
* [[Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175614</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175614"/>
		<updated>2025-12-28T12:40:49Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: /* 🗺️ Browse by State */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
! Column 1 !! Column 2 !! Column 3&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | Union Territories&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Core&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Professional&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Other&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Universities|Universities]]&lt;br /&gt;
* [[Category:Colleges|Colleges]]&lt;br /&gt;
* [[Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[About Honour Wiki]]&lt;br /&gt;
* [[Privacy policy]]&lt;br /&gt;
* [[Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175613</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175613"/>
		<updated>2025-12-28T12:39:37Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:center; font-size:160%;&amp;quot; | Honour Wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Find higher-education institutions in India by &#039;&#039;&#039;name&#039;&#039;&#039;, &#039;&#039;&#039;AISHE code&#039;&#039;&#039;, &#039;&#039;&#039;state&#039;&#039;&#039;, &#039;&#039;&#039;district&#039;&#039;&#039;, or &#039;&#039;&#039;affiliation&#039;&#039;&#039;.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align:center;&amp;quot; | Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🔍 Start with Search ==&lt;br /&gt;
Use the search bar at the top of the site.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;teacher training west bengal&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Column 1&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Column 2&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Column 3&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
|}&lt;br /&gt;
  &lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | Union Territories&lt;br /&gt;
! style=&amp;quot;width:50%;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Core&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Professional&lt;br /&gt;
! style=&amp;quot;width:33%;&amp;quot; | Other&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Universities|Universities]]&lt;br /&gt;
* [[Category:Colleges|Colleges]]&lt;br /&gt;
* [[Category:Teacher Training Institutes|Teacher Training Institutes]]&lt;br /&gt;
* [[Category:Polytechnic Colleges|Polytechnic Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Engineering Colleges|Engineering Colleges]]&lt;br /&gt;
* [[Category:Medical Colleges|Medical Colleges]]&lt;br /&gt;
* [[Category:Pharmacy Colleges|Pharmacy Colleges]]&lt;br /&gt;
* [[Category:Law Colleges|Law Colleges]]&lt;br /&gt;
|&lt;br /&gt;
* [[Category:Arts and Science Colleges|Arts and Science Colleges]]&lt;br /&gt;
* [[Category:Commerce Colleges|Commerce Colleges]]&lt;br /&gt;
* [[Category:Management Institutes|Management Institutes]]&lt;br /&gt;
* [[Category:Education Colleges|Education Colleges]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
* [[Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
* [[Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[Category:Affiliations|All Affiliations]]&lt;br /&gt;
&lt;br /&gt;
== 🧾 About ==&lt;br /&gt;
* [[About Honour Wiki]]&lt;br /&gt;
* [[Privacy policy]]&lt;br /&gt;
* [[Disclaimers]]&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175612</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Main_Page&amp;diff=175612"/>
		<updated>2025-12-28T12:35:40Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;max-width:1100px; margin:0 auto; padding:26px 14px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center; padding:18px 10px 10px 10px;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:34px; font-weight:800; line-height:1.15;&amp;quot;&amp;gt;&lt;br /&gt;
    Honour Wiki&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;margin-top:8px; font-size:16px; color:#54595d;&amp;quot;&amp;gt;&lt;br /&gt;
    Find higher-education institutions in India by &amp;lt;b&amp;gt;name&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;AISHE code&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;state&amp;lt;/b&amp;gt;, &amp;lt;b&amp;gt;district&amp;lt;/b&amp;gt;, or &amp;lt;b&amp;gt;affiliation&amp;lt;/b&amp;gt;.&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;margin-top:10px; font-size:13px; color:#72777d;&amp;quot;&amp;gt;&lt;br /&gt;
    Tip: Try &amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;Shyampahari&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;engineering college maharashtra&amp;lt;/code&amp;gt;.&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:18px 0 8px 0; border-top:1px solid #eaecf0;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:14px; flex-wrap:wrap; align-items:stretch;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;div style=&amp;quot;flex:1 1 420px; border:1px solid #eaecf0; border-radius:12px; padding:16px; background:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:18px; font-weight:700; margin-bottom:8px;&amp;quot;&amp;gt;🔍 Search-first directory&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;color:#54595d; font-size:14px; line-height:1.6;&amp;quot;&amp;gt;&lt;br /&gt;
      Use the search bar (top right) for instant results. It supports partial names and AISHE codes.&lt;br /&gt;
      &amp;lt;div style=&amp;quot;margin-top:10px;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;b&amp;gt;Quick examples&amp;lt;/b&amp;gt;&lt;br /&gt;
        &amp;lt;ul style=&amp;quot;margin:8px 0 0 18px;&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;li&amp;gt;&amp;lt;code&amp;gt;S-19353&amp;lt;/code&amp;gt; (AISHE)&amp;lt;/li&amp;gt;&lt;br /&gt;
          &amp;lt;li&amp;gt;&amp;lt;code&amp;gt;ptti&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;teacher training&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
          &amp;lt;li&amp;gt;&amp;lt;code&amp;gt;university kerala&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;engineering odisha&amp;lt;/code&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/ul&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;div style=&amp;quot;flex:1 1 420px; border:1px solid #eaecf0; border-radius:12px; padding:16px; background:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:18px; font-weight:700; margin-bottom:8px;&amp;quot;&amp;gt;🧭 Browse&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;color:#54595d; font-size:14px; line-height:1.6;&amp;quot;&amp;gt;&lt;br /&gt;
      Prefer exploring? Start from categories:&lt;br /&gt;
      &amp;lt;ul style=&amp;quot;margin:8px 0 0 18px;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;Browse by &amp;lt;b&amp;gt;State / UT&amp;lt;/b&amp;gt; (below)&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;Browse by &amp;lt;b&amp;gt;Institution Type&amp;lt;/b&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;Browse by &amp;lt;b&amp;gt;Status&amp;lt;/b&amp;gt; (Active/Inactive)&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;Browse by &amp;lt;b&amp;gt;Affiliation&amp;lt;/b&amp;gt; (Universities)&amp;lt;/li&amp;gt;&lt;br /&gt;
      &amp;lt;/ul&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:18px 0 8px 0; border-top:1px solid #eaecf0;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🗺️ Browse by State ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:14px; color:#54595d; margin-bottom:10px;&amp;quot;&amp;gt;&lt;br /&gt;
All Indian states. Each link opens a category that lists institutions in that state.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;column-count:3; column-gap:36px; font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[Category:Colleges in Andhra Pradesh|Andhra Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Arunachal Pradesh|Arunachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Assam|Assam]]&lt;br /&gt;
* [[Category:Colleges in Bihar|Bihar]]&lt;br /&gt;
* [[Category:Colleges in Chhattisgarh|Chhattisgarh]]&lt;br /&gt;
* [[Category:Colleges in Goa|Goa]]&lt;br /&gt;
* [[Category:Colleges in Gujarat|Gujarat]]&lt;br /&gt;
* [[Category:Colleges in Haryana|Haryana]]&lt;br /&gt;
* [[Category:Colleges in Himachal Pradesh|Himachal Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Jharkhand|Jharkhand]]&lt;br /&gt;
* [[Category:Colleges in Karnataka|Karnataka]]&lt;br /&gt;
* [[Category:Colleges in Kerala|Kerala]]&lt;br /&gt;
* [[Category:Colleges in Madhya Pradesh|Madhya Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Maharashtra|Maharashtra]]&lt;br /&gt;
* [[Category:Colleges in Manipur|Manipur]]&lt;br /&gt;
* [[Category:Colleges in Meghalaya|Meghalaya]]&lt;br /&gt;
* [[Category:Colleges in Mizoram|Mizoram]]&lt;br /&gt;
* [[Category:Colleges in Nagaland|Nagaland]]&lt;br /&gt;
* [[Category:Colleges in Odisha|Odisha]]&lt;br /&gt;
* [[Category:Colleges in Punjab|Punjab]]&lt;br /&gt;
* [[Category:Colleges in Rajasthan|Rajasthan]]&lt;br /&gt;
* [[Category:Colleges in Sikkim|Sikkim]]&lt;br /&gt;
* [[Category:Colleges in Tamil Nadu|Tamil Nadu]]&lt;br /&gt;
* [[Category:Colleges in Telangana|Telangana]]&lt;br /&gt;
* [[Category:Colleges in Tripura|Tripura]]&lt;br /&gt;
* [[Category:Colleges in Uttar Pradesh|Uttar Pradesh]]&lt;br /&gt;
* [[Category:Colleges in Uttarakhand|Uttarakhand]]&lt;br /&gt;
* [[Category:Colleges in West Bengal|West Bengal]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:14px 0 8px 0; border-top:1px solid #eaecf0;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🏙️ Browse by Union Territory ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:14px; color:#54595d; margin-bottom:10px;&amp;quot;&amp;gt;&lt;br /&gt;
All Union Territories. If a category is empty/red right now, it can be created later.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;column-count:2; column-gap:36px; font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[Category:Colleges in Andaman and Nicobar Islands|Andaman and Nicobar Islands]]&lt;br /&gt;
* [[Category:Colleges in Chandigarh|Chandigarh]]&lt;br /&gt;
* [[Category:Colleges in Dadra and Nagar Haveli and Daman and Diu|Dadra and Nagar Haveli and Daman and Diu]]&lt;br /&gt;
* [[Category:Colleges in Delhi|Delhi (NCT)]]&lt;br /&gt;
* [[Category:Colleges in Jammu and Kashmir|Jammu and Kashmir]]&lt;br /&gt;
* [[Category:Colleges in Ladakh|Ladakh]]&lt;br /&gt;
* [[Category:Colleges in Lakshadweep|Lakshadweep]]&lt;br /&gt;
* [[Category:Colleges in Puducherry|Puducherry]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:18px 0 8px 0; border-top:1px solid #eaecf0;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🎓 Browse by Institution Type ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:flex; gap:14px; flex-wrap:wrap;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1 1 260px; border:1px solid #eaecf0; border-radius:12px; padding:14px; background:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Core&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;margin:10px 0 0 18px; font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Universities|Universities]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Colleges|Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Teacher Training Institutes|Teacher Training Institutes]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Polytechnic Colleges|Polytechnic Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1 1 260px; border:1px solid #eaecf0; border-radius:12px; padding:14px; background:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Professional&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;margin:10px 0 0 18px; font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Engineering Colleges|Engineering Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Medical Colleges|Medical Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Pharmacy Colleges|Pharmacy Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Law Colleges|Law Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex:1 1 260px; border:1px solid #eaecf0; border-radius:12px; padding:14px; background:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Arts, Science, Commerce&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;margin:10px 0 0 18px; font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Arts and Science Colleges|Arts and Science Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Commerce Colleges|Commerce Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Management Institutes|Management Institutes]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Category:Education Colleges|Education Colleges]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:18px 0 8px 0; border-top:1px solid #eaecf0;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ✅ Browse by Status ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:14px; color:#54595d; margin-bottom:8px;&amp;quot;&amp;gt;&lt;br /&gt;
Useful when you want only active institutions.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
* [[Category:Status: Active|Active Institutions]]&lt;br /&gt;
* [[Category:Status: Inactive|Inactive Institutions]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:18px 0 8px 0; border-top:1px solid #eaecf0;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🏛️ Browse by Affiliation ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:14px; color:#54595d; margin-bottom:8px;&amp;quot;&amp;gt;&lt;br /&gt;
Affiliation categories are powerful once they grow (example: “Affiliated to XYZ University”).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
* [[Category:Affiliated institutions|All Affiliated Institutions]]&lt;br /&gt;
* [[Category:Affiliations|All Affiliations]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:18px 0 8px 0; border-top:1px solid #eaecf0;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 🧾 About Honour Wiki ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:14px; color:#54595d; line-height:1.65;&amp;quot;&amp;gt;&lt;br /&gt;
Honour Wiki is a structured, searchable directory of higher-education institutions in India. Many pages are auto-generated from datasets and are meant to be expanded with verified details and citations.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top:10px; font-size:14px;&amp;quot;&amp;gt;&lt;br /&gt;
* [[About Honour Wiki]]&lt;br /&gt;
* [[Privacy policy]]&lt;br /&gt;
* [[Disclaimers]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:18px 0 0 0; text-align:center; font-size:12.5px; color:#72777d;&amp;quot;&amp;gt;&lt;br /&gt;
Built for discovery. Contributions and corrections are welcome.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Honour_Wiki:General_disclaimer&amp;diff=175611</id>
		<title>Honour Wiki:General disclaimer</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Honour_Wiki:General_disclaimer&amp;diff=175611"/>
		<updated>2025-12-28T09:46:37Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Disclaimers}}&lt;br /&gt;
&lt;br /&gt;
== General disclaimer ==&lt;br /&gt;
Honour Wiki is provided for informational purposes only. While we aim to keep information accurate and up to date, we make no guarantees about completeness, correctness, or reliability.&lt;br /&gt;
&lt;br /&gt;
== Data-source disclaimer ==&lt;br /&gt;
Some pages are auto-generated from structured datasets. Dataset errors, outdated records, and naming inconsistencies may exist. Users should verify critical information using official sources.&lt;br /&gt;
&lt;br /&gt;
== Not official advice ==&lt;br /&gt;
Content on this site does not constitute legal, financial, academic, or professional advice. Do not rely on this wiki as the sole source for important decisions.&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
Links to external websites are provided for convenience. Honour Wiki does not control or endorse external content and is not responsible for external site accuracy, security, or availability.&lt;br /&gt;
&lt;br /&gt;
== No warranties ==&lt;br /&gt;
The site is provided “as is” without warranties of any kind, express or implied, including merchantability, fitness for a particular purpose, and non-infringement.&lt;br /&gt;
&lt;br /&gt;
== Limitation of liability ==&lt;br /&gt;
To the maximum extent permitted by applicable law, Honour Wiki and its operators will not be liable for any damages arising from the use of, or inability to use, this site.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
If you believe content is incorrect or should be updated, contact:&lt;br /&gt;
* &#039;&#039;&#039;Email&#039;&#039;&#039;: contact@honour.app&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Honour_Wiki:General_disclaimer&amp;diff=175610</id>
		<title>Honour Wiki:General disclaimer</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Honour_Wiki:General_disclaimer&amp;diff=175610"/>
		<updated>2025-12-28T09:46:25Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;{{DISPLAYTITLE:Disclaimers}}  == General disclaimer == Honour Wiki is provided for informational purposes only. While we aim to keep information accurate and up to date, we make no guarantees about completeness, correctness, or reliability.  == Data-source disclaimer == Some pages are auto-generated from structured datasets. Dataset errors, outdated records, and naming inconsistencies may exist. Users should verify critical information using official sources.  == Not off...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Disclaimers}}&lt;br /&gt;
&lt;br /&gt;
== General disclaimer ==&lt;br /&gt;
Honour Wiki is provided for informational purposes only. While we aim to keep information accurate and up to date, we make no guarantees about completeness, correctness, or reliability.&lt;br /&gt;
&lt;br /&gt;
== Data-source disclaimer ==&lt;br /&gt;
Some pages are auto-generated from structured datasets. Dataset errors, outdated records, and naming inconsistencies may exist. Users should verify critical information using official sources.&lt;br /&gt;
&lt;br /&gt;
== Not official advice ==&lt;br /&gt;
Content on this site does not constitute legal, financial, academic, or professional advice. Do not rely on this wiki as the sole source for important decisions.&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
Links to external websites are provided for convenience. Honour Wiki does not control or endorse external content and is not responsible for external site accuracy, security, or availability.&lt;br /&gt;
&lt;br /&gt;
== No warranties ==&lt;br /&gt;
The site is provided “as is” without warranties of any kind, express or implied, including merchantability, fitness for a particular purpose, and non-infringement.&lt;br /&gt;
&lt;br /&gt;
== Limitation of liability ==&lt;br /&gt;
To the maximum extent permitted by applicable law, Honour Wiki and its operators will not be liable for any damages arising from the use of, or inability to use, this site.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
If you believe content is incorrect or should be updated, contact:&lt;br /&gt;
* &#039;&#039;&#039;Email&#039;&#039;&#039;: support@honour.app&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Honour_Wiki:About&amp;diff=175609</id>
		<title>Honour Wiki:About</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Honour_Wiki:About&amp;diff=175609"/>
		<updated>2025-12-28T09:46:01Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;{{DISPLAYTITLE:About Honour Wiki}}  == What is Honour Wiki? == &amp;#039;&amp;#039;&amp;#039;Honour Wiki&amp;#039;&amp;#039;&amp;#039; is a public knowledge base that organizes and presents structured information about higher-education institutions in India.  Our goal is to make institutional information easier to discover, verify, and improve over time.  == What you will find here == * Institution pages with key metadata such as AISHE code, type, state, district, and status * Categories that help you browse institutions by...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:About Honour Wiki}}&lt;br /&gt;
&lt;br /&gt;
== What is Honour Wiki? ==&lt;br /&gt;
&#039;&#039;&#039;Honour Wiki&#039;&#039;&#039; is a public knowledge base that organizes and presents structured information about higher-education institutions in India.&lt;br /&gt;
&lt;br /&gt;
Our goal is to make institutional information easier to discover, verify, and improve over time.&lt;br /&gt;
&lt;br /&gt;
== What you will find here ==&lt;br /&gt;
* Institution pages with key metadata such as AISHE code, type, state, district, and status&lt;br /&gt;
* Categories that help you browse institutions by geography, affiliation, and other attributes&lt;br /&gt;
* Redirect pages for AISHE codes that point to the correct institution pages&lt;br /&gt;
&lt;br /&gt;
== How the content is created ==&lt;br /&gt;
Many pages are initially generated from structured datasets. These pages are designed to be improved:&lt;br /&gt;
* Add verified details (programs, facilities, admissions, contacts)&lt;br /&gt;
* Fix formatting or naming issues&lt;br /&gt;
* Add citations to reliable sources&lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
You can help by:&lt;br /&gt;
* Correcting titles or metadata (with sources where possible)&lt;br /&gt;
* Expanding sections like History, Programs, Facilities, Admissions, and Alumni&lt;br /&gt;
* Adding citations and external references&lt;br /&gt;
* Reporting duplicates or incorrect redirects&lt;br /&gt;
&lt;br /&gt;
== Data notes ==&lt;br /&gt;
* AISHE codes may redirect to an institution page.&lt;br /&gt;
* “Status” reflects available dataset status and may require verification.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For feedback, corrections, or partnerships:&lt;br /&gt;
* &#039;&#039;&#039;Email&#039;&#039;&#039;: contact@honour.app&lt;br /&gt;
* &#039;&#039;&#039;Website&#039;&#039;&#039;: https://honour.app&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Honour_Wiki:Privacy_policy&amp;diff=175608</id>
		<title>Honour Wiki:Privacy policy</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Honour_Wiki:Privacy_policy&amp;diff=175608"/>
		<updated>2025-12-28T09:45:16Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Privacy Policy}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
Honour Wiki is a public knowledge base hosted at &#039;&#039;&#039;wiki.honour.app&#039;&#039;&#039;. This Privacy Policy explains what information we collect, why we collect it, and how you can control it.&lt;br /&gt;
&lt;br /&gt;
== What we collect ==&lt;br /&gt;
=== Information you provide ===&lt;br /&gt;
* Account details such as username and email address (if you create an account)&lt;br /&gt;
* Content you submit to the wiki such as edits, page creations, uploads, and messages&lt;br /&gt;
&lt;br /&gt;
=== Information collected automatically ===&lt;br /&gt;
* IP address and basic browser/device information used for security, abuse prevention, and site operation&lt;br /&gt;
* Cookies and similar identifiers used for login sessions and site preferences&lt;br /&gt;
* Basic access logs (for example request time, requested page, and response status)&lt;br /&gt;
&lt;br /&gt;
== How we use information ==&lt;br /&gt;
We use the information we collect to:&lt;br /&gt;
* Operate and maintain the site&lt;br /&gt;
* Prevent spam, vandalism, fraud, and unauthorized access&lt;br /&gt;
* Improve performance, reliability, and user experience&lt;br /&gt;
* Communicate important account or security information (if applicable)&lt;br /&gt;
* Comply with legal obligations&lt;br /&gt;
&lt;br /&gt;
== Cookies ==&lt;br /&gt;
Honour Wiki uses cookies to:&lt;br /&gt;
* Keep you signed in&lt;br /&gt;
* Remember your preferences (for example skin, language, and settings)&lt;br /&gt;
* Protect the site from abuse&lt;br /&gt;
&lt;br /&gt;
You can control cookies through your browser settings. Disabling cookies may affect login and site functionality.&lt;br /&gt;
&lt;br /&gt;
== Public nature of the wiki ==&lt;br /&gt;
Edits to public pages are generally visible to everyone. Depending on the wiki configuration, edit history may include usernames and/or IP addresses for anonymous edits.&lt;br /&gt;
&lt;br /&gt;
== Sharing of information ==&lt;br /&gt;
We do not sell personal information.&lt;br /&gt;
&lt;br /&gt;
We may share limited information only when necessary to:&lt;br /&gt;
* Protect the security and integrity of the site&lt;br /&gt;
* Investigate abuse or respond to legal requests&lt;br /&gt;
* Work with service providers that help operate the site (for example hosting), under appropriate safeguards&lt;br /&gt;
&lt;br /&gt;
== Data retention ==&lt;br /&gt;
We retain logs and account information for as long as needed to operate the site, maintain security, and meet legal requirements. Public contributions may remain available indefinitely as part of the wiki’s records.&lt;br /&gt;
&lt;br /&gt;
== Your choices ==&lt;br /&gt;
You may:&lt;br /&gt;
* Edit your account preferences (if you have an account)&lt;br /&gt;
* Request account deletion or anonymization where feasible&lt;br /&gt;
* Contact us with privacy-related questions or requests&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For privacy questions or requests, contact:&lt;br /&gt;
* &#039;&#039;&#039;Email&#039;&#039;&#039;: support@honour.app&lt;br /&gt;
&lt;br /&gt;
== Updates ==&lt;br /&gt;
We may update this policy from time to time. The latest version will be posted on this page with an updated effective date.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Effective date:&#039;&#039; {{CURRENTYEAR}}-{{CURRENTMONTH}}-{{CURRENTDAY}}&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Honour_Wiki:Privacy_policy&amp;diff=175607</id>
		<title>Honour Wiki:Privacy policy</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Honour_Wiki:Privacy_policy&amp;diff=175607"/>
		<updated>2025-12-28T09:43:33Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;Honour Wiki respects the privacy of its users.  This website does not require visitors to create an account to read content. Personal information is collected only when users voluntarily provide it, such as during account creation or when contacting the administrators.  Information that may be collected includes: - Username and email address (for registered users) - IP address and browser details (for security, logging, and abuse prevention) - Cookies required for login...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Honour Wiki respects the privacy of its users.&lt;br /&gt;
&lt;br /&gt;
This website does not require visitors to create an account to read content. Personal information is collected only when users voluntarily provide it, such as during account creation or when contacting the administrators.&lt;br /&gt;
&lt;br /&gt;
Information that may be collected includes:&lt;br /&gt;
- Username and email address (for registered users)&lt;br /&gt;
- IP address and browser details (for security, logging, and abuse prevention)&lt;br /&gt;
- Cookies required for login sessions and site functionality&lt;br /&gt;
&lt;br /&gt;
Honour Wiki does not sell, trade, or rent user data to third parties.&lt;br /&gt;
&lt;br /&gt;
Cookies are used solely to maintain login sessions, preferences, and basic analytics necessary for site operation.&lt;br /&gt;
&lt;br /&gt;
Content on this site is publicly accessible. Users should avoid submitting sensitive personal information in page content or discussions.&lt;br /&gt;
&lt;br /&gt;
This policy may be updated as the platform evolves.&lt;br /&gt;
&lt;br /&gt;
For questions regarding privacy, please contact at contact@honour.app&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=5</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=5"/>
		<updated>2025-12-23T21:40:36Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{CollegeInfobox&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| aishe = {{{aishe|—}}}&lt;br /&gt;
| type = {{{type|—}}}&lt;br /&gt;
| affiliation = {{{affiliation|—}}}&lt;br /&gt;
| state = {{{state|—}}}&lt;br /&gt;
| district = {{{district|—}}}&lt;br /&gt;
| status = {{{status|—}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name|}}}&#039;&#039;&#039; is a higher education institution located in {{{district|—}}}, {{{state|—}}}, India.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This page is auto-generated from structured data and is intended to be expanded by the institution or the community.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
{{#if:{{{overview|}}}|{{{overview}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|Details about academic programs will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{#if:{{{affiliations|}}}|{{{affiliations}}}|{{{affiliation|—}}}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=4</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=4"/>
		<updated>2025-12-23T21:39:03Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{CollegeInfobox&lt;br /&gt;
| name = {{{name}}}&lt;br /&gt;
| aishe = {{{aishe}}}&lt;br /&gt;
| type = {{{type}}}&lt;br /&gt;
| affiliation = {{{affiliation}}}&lt;br /&gt;
| state = {{{state}}}&lt;br /&gt;
| district = {{{district}}}&lt;br /&gt;
| status = {{{status}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name}}}&#039;&#039;&#039; is a higher education institution located in {{{district}}}, {{{state}}}, India.&lt;br /&gt;
&lt;br /&gt;
This article is auto-generated from verified data sources and is intended to be expanded by the institution or the community.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|Details about academic programs will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=3</id>
		<title>Template:CollegePage</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegePage&amp;diff=3"/>
		<updated>2025-12-23T21:37:23Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;{{CollegeInfobox | name = {{{name}}} | aishe = {{{aishe}}} | type = {{{type}}} | affiliation = {{{affiliation}}} | state = {{{state}}} | district = {{{district}}} | status = {{{status}}} }}  &amp;#039;&amp;#039;&amp;#039;{{{name}}}&amp;#039;&amp;#039;&amp;#039; is a higher education institution located in {{{district}}}, {{{state}}}, India.  This article is auto-generated from verified data sources and is intended to be expanded by the institution or the community.  == History == {{#if:{{{history|}}}|{{{history}}}|This sect...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{CollegeInfobox&lt;br /&gt;
| name = {{{name}}}&lt;br /&gt;
| aishe = {{{aishe}}}&lt;br /&gt;
| type = {{{type}}}&lt;br /&gt;
| affiliation = {{{affiliation}}}&lt;br /&gt;
| state = {{{state}}}&lt;br /&gt;
| district = {{{district}}}&lt;br /&gt;
| status = {{{status}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{{name}}}&#039;&#039;&#039; is a higher education institution located in {{{district}}}, {{{state}}}, India.&lt;br /&gt;
&lt;br /&gt;
This article is auto-generated from verified data sources and is intended to be expanded by the institution or the community.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{#if:{{{history|}}}|{{{history}}}|This section has not yet been expanded.}}&lt;br /&gt;
&lt;br /&gt;
== Programs ==&lt;br /&gt;
{{#if:{{{programs|}}}|{{{programs}}}|Details about academic programs will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Facilities ==&lt;br /&gt;
{{#if:{{{facilities|}}}|{{{facilities}}}|Information about campus facilities will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Admissions ==&lt;br /&gt;
{{#if:{{{admissions|}}}|{{{admissions}}}|Admission process details will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== Affiliations ==&lt;br /&gt;
{{{affiliation}}}&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
{{#if:{{{alumni|}}}|{{{alumni}}}|Notable alumni information will be added here.}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.honour.app/index.php?title=Template:CollegeInfobox&amp;diff=2</id>
		<title>Template:CollegeInfobox</title>
		<link rel="alternate" type="text/html" href="https://wiki.honour.app/index.php?title=Template:CollegeInfobox&amp;diff=2"/>
		<updated>2025-12-23T21:37:02Z</updated>

		<summary type="html">&lt;p&gt;WikiAdmin: Created page with &amp;quot;{| class=&amp;quot;infobox vcard&amp;quot; |- ! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;font-size:1.2em;&amp;quot; | {{{name|}}} |- | AISHE Code | {{{aishe|—}}} |- | Type | {{{type|—}}} |- | Affiliation | {{{affiliation|—}}} |- | State | {{{state|—}}} |- | District | {{{district|—}}} |- | Status | {{{status|—}}} |}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox vcard&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;font-size:1.2em;&amp;quot; | {{{name|}}}&lt;br /&gt;
|-&lt;br /&gt;
| AISHE Code&lt;br /&gt;
| {{{aishe|—}}}&lt;br /&gt;
|-&lt;br /&gt;
| Type&lt;br /&gt;
| {{{type|—}}}&lt;br /&gt;
|-&lt;br /&gt;
| Affiliation&lt;br /&gt;
| {{{affiliation|—}}}&lt;br /&gt;
|-&lt;br /&gt;
| State&lt;br /&gt;
| {{{state|—}}}&lt;br /&gt;
|-&lt;br /&gt;
| District&lt;br /&gt;
| {{{district|—}}}&lt;br /&gt;
|-&lt;br /&gt;
| Status&lt;br /&gt;
| {{{status|—}}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
</feed>